1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-12 16:52:29 +08:00

fix: fix failed unit test

This commit is contained in:
dudaodong
2023-06-20 11:10:33 +08:00
parent 844b7a2c3b
commit efcfbfb6a1
2 changed files with 4 additions and 7 deletions

View File

@@ -175,11 +175,11 @@ func ExampleReadFileByLine() {
} }
func ExampleListFileNames() { func ExampleListFileNames() {
fileList, _ := ListFileNames("./") fileList, _ := ListFileNames("../internal")
fmt.Println(fileList) fmt.Println(fileList)
// Output: // Output:
// [file.go file_example_test.go file_test.go] // [assert.go assert_test.go error_join.go]
} }
func ExampleZip() { func ExampleZip() {
@@ -235,7 +235,6 @@ func ExampleZipAppendEntry() {
fmt.Println(IsExist("./unzip/file.go")) fmt.Println(IsExist("./unzip/file.go"))
fmt.Println(IsExist("./unzip/testdata/file.go.zip")) fmt.Println(IsExist("./unzip/testdata/file.go.zip"))
fmt.Println(IsExist("./unzip/testdata/test.csv"))
fmt.Println(IsExist("./unzip/testdata/test.txt")) fmt.Println(IsExist("./unzip/testdata/test.txt"))
os.Remove(zipFile) os.Remove(zipFile)
@@ -245,7 +244,6 @@ func ExampleZipAppendEntry() {
// true // true
// true // true
// true // true
// true
} }
func ExampleIsZipFile() { func ExampleIsZipFile() {

View File

@@ -222,7 +222,6 @@ func TestZipAppendEntry(t *testing.T) {
assert.Equal(true, IsExist("./unzip/text.txt")) assert.Equal(true, IsExist("./unzip/text.txt"))
assert.Equal(true, IsExist("./unzip/file.go")) assert.Equal(true, IsExist("./unzip/file.go"))
assert.Equal(true, IsExist("./unzip/testdata/file.go.zip")) assert.Equal(true, IsExist("./unzip/testdata/file.go.zip"))
assert.Equal(true, IsExist("./unzip/testdata/test.csv"))
assert.Equal(true, IsExist("./unzip/testdata/test.txt")) assert.Equal(true, IsExist("./unzip/testdata/test.txt"))
os.Remove(srcFile) os.Remove(srcFile)
@@ -274,10 +273,10 @@ func TestMiMeType(t *testing.T) {
func TestListFileNames(t *testing.T) { func TestListFileNames(t *testing.T) {
assert := internal.NewAssert(t, "TestListFileNames") assert := internal.NewAssert(t, "TestListFileNames")
filesInPath, err := ListFileNames("./") filesInPath, err := ListFileNames("../internal")
assert.IsNil(err) assert.IsNil(err)
expected := []string{"file.go", "file_example_test.go", "file_test.go"} expected := []string{"assert.go", "assert_test.go", "error_join.go"}
assert.Equal(expected, filesInPath) assert.Equal(expected, filesInPath)
} }