Added test names.

geesefs-0-30-9
Aaron Jacobs 2015-03-30 16:15:13 +11:00
parent d4e690f2f8
commit 36643c8daf
2 changed files with 24 additions and 4 deletions

View File

@ -20,9 +20,9 @@ import "github.com/jacobsa/fuse"
// directory named "bar".
//
// The file "foo" may be opened for reading and/or writing, but reads and
// writes aren't supported. Additionally, a file named "bar" may be created
// anew an arbitrary number of times in any directory, but it will never exist
// in lookups by name.
// writes aren't supported. Additionally, any non-existent file or directory
// name may be created within any directory, but the resulting inode will
// appear to have been unlinked immediately.
//
// The file system maintains reference counts for the inodes involved. It will
// panic if a reference count becomes negative or if an inode ID is re-used

View File

@ -47,6 +47,26 @@ func (t *ForgetFSTest) TearDown() {
// Tests
////////////////////////////////////////////////////////////////////////
func (t *ForgetFSTest) DoesFoo() {
func (t *ForgetFSTest) Open_Foo() {
AssertTrue(false, "TODO")
}
func (t *ForgetFSTest) Open_Dir() {
AssertTrue(false, "TODO")
}
func (t *ForgetFSTest) Stat_Foo() {
AssertTrue(false, "TODO")
}
func (t *ForgetFSTest) Stat_Dir() {
AssertTrue(false, "TODO")
}
func (t *ForgetFSTest) CreateFile() {
AssertTrue(false, "TODO")
}
func (t *ForgetFSTest) MkDir() {
AssertTrue(false, "TODO")
}