BasicsTest.StatNonexistent

geesefs-0-30-9
Aaron Jacobs 2015-03-17 13:38:51 +11:00
parent 2051c13cc0
commit c8b0b0e822
1 changed files with 5 additions and 6 deletions

View File

@ -113,10 +113,13 @@ func (t *BasicsTest) SetUp(ti *TestInfo) {
t.CachingFSTest.setUp(lookupEntryTimeout, getattrTimeout)
}
func (t *BasicsTest) StatNonexistent_Root() {
func (t *BasicsTest) StatNonexistent() {
names := []string{
"blah",
"bar", // Wrong directory
"bar",
"dir/blah",
"dir/dir",
"dir/foo",
}
for _, n := range names {
@ -127,10 +130,6 @@ func (t *BasicsTest) StatNonexistent_Root() {
}
}
func (t *BasicsTest) StatNonexistent_Dir() {
AssertTrue(false, "TODO")
}
func (t *BasicsTest) StatFoo() {
AssertTrue(false, "TODO")
}