mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-27 07:26:31 -05:00
14 lines
217 B
Go
14 lines
217 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/attic-labs/noms/nomdl/codegen/test/gen"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestClobber(t *testing.T) {
|
|
l := gen.NewListOfListOfBlob()
|
|
assert.NotNil(t, l)
|
|
}
|