mirror of
https://gitee.com/johng/gf
synced 2026-06-07 02:12:11 +08:00
Merge pull request #192 from jroam/master
This commit is contained in:
@ -35,7 +35,6 @@ func TestQueue_Basic(t *testing.T) {
|
||||
gtest.Assert(q.Pop(), 1)
|
||||
}
|
||||
|
||||
|
||||
func TestQueue_Pop(t *testing.T) {
|
||||
q1 := gqueue.New()
|
||||
q1.Push(1)
|
||||
@ -44,7 +43,6 @@ func TestQueue_Pop(t *testing.T) {
|
||||
q1.Push(4)
|
||||
i1 := q1.Pop()
|
||||
gtest.Assert(i1, 1)
|
||||
|
||||
}
|
||||
|
||||
func TestQueue_Close(t *testing.T) {
|
||||
@ -53,4 +51,4 @@ func TestQueue_Close(t *testing.T) {
|
||||
q1.Push(2)
|
||||
gtest.Assert(q1.Len(), 2)
|
||||
q1.Close()
|
||||
}
|
||||
}
|
||||
|
||||
@ -337,9 +337,7 @@ func TestCopy(t *testing.T) {
|
||||
defer delTestFiles(topath)
|
||||
|
||||
gtest.Assert(gfile.IsFile(testpath()+topath), true)
|
||||
|
||||
gtest.AssertNE(gfile.Copy("", ""), nil)
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
@ -365,7 +363,7 @@ func TestDirNames(t *testing.T) {
|
||||
readlist, err = gfile.DirNames(testpath() + paths)
|
||||
|
||||
gtest.Assert(err, nil)
|
||||
gtest.Assert(havelist, readlist)
|
||||
gtest.AssertIN(readlist, havelist)
|
||||
|
||||
_, err = gfile.DirNames("")
|
||||
gtest.AssertNE(err, nil)
|
||||
@ -653,8 +651,8 @@ func TestMkdir(t *testing.T) {
|
||||
func TestStat(t *testing.T) {
|
||||
gtest.Case(t, func() {
|
||||
var (
|
||||
tpath1 = "/testfile_t1.txt"
|
||||
tpath2 = "./testfile_t1_no.txt"
|
||||
tpath1 = "/testfile_t1.txt"
|
||||
tpath2 = "./testfile_t1_no.txt"
|
||||
err error
|
||||
fileiofo os.FileInfo
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user