mirror of https://github.com/databricks/cli.git
13 lines
213 B
Go
13 lines
213 B
Go
|
package filer
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestWriteMode(t *testing.T) {
|
||
|
assert.Equal(t, 512, int(OverwriteIfExists))
|
||
|
assert.Equal(t, 1024, int(CreateParentDirectories))
|
||
|
}
|