mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-03 11:30:28 -05:00
ff8924db09
If two files depend on the same file we ended up overwriting the first written file which is problematic because the "internal" types would not be written the second time.
16 lines
336 B
Go
16 lines
336 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/attic-labs/noms/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
|
"github.com/attic-labs/noms/chunks"
|
|
"github.com/attic-labs/noms/nomdl/codegen/test/gen"
|
|
)
|
|
|
|
func TestClobber(t *testing.T) {
|
|
cs := chunks.NewMemoryStore()
|
|
l := gen.NewListOfListOfBlob(cs)
|
|
assert.NotNil(t, l)
|
|
}
|