Added more test names and TODOs.

geesefs-0-30-9
Aaron Jacobs 2015-06-25 15:44:23 +10:00
parent eeb412d406
commit 9406c5bc29
2 changed files with 10 additions and 1 deletions

View File

@ -359,7 +359,8 @@ func (o *CreateSymlinkOp) toBazilfuseResponse() (bfResp interface{}) {
////////////////////////////////////////////////////////////////////////
// TODO(jacobsa): Comments for struct and fields, in particular covering
// renames across mount points.
// renames across mount points. Mention that you'll still get a forget, like
// RmDirOp.
type RenameOp struct {
commonOp

View File

@ -1391,3 +1391,11 @@ func (t *MemFSTest) RenameIntoFileSystem_File() {
func (t *MemFSTest) RenameIntoFileSystem_Directory() {
AssertTrue(false, "TODO")
}
func (t *MemFSTest) RenameOverExistingFile() {
AssertTrue(false, "TODO")
}
func (t *MemFSTest) RenameOverExistingDirectory() {
AssertTrue(false, "TODO")
}