Fixed duplicate test methods.

geesefs-0-30-9
Aaron Jacobs 2015-03-17 12:56:56 +11:00
parent 236b1ef9df
commit d3b071b61a
1 changed files with 12 additions and 1 deletions

View File

@ -94,11 +94,22 @@ func (t *CachingFSTest) TearDown() {
////////////////////////////////////////////////////////////////////////
type BasicsTest struct {
NoCachingTest
CachingFSTest
}
var _ SetUpInterface = &BasicsTest{}
func init() { RegisterTestSuite(&BasicsTest{}) }
func (t *BasicsTest) SetUp(ti *TestInfo) {
const (
lookupEntryTimeout = 0
getattrTimeout = 0
)
t.CachingFSTest.setUp(lookupEntryTimeout, getattrTimeout)
}
func (t *BasicsTest) StatNonexistent_Root() {
AssertTrue(false, "TODO")
}