Example #1
0
 def test_rmdir_with_trailing_slashes(self):
     _create_test_link_to_dir()
     symlinks.rm(LINK_FOOBAR_DIR + "//")
     self.assertTrue(_file_exists(FOOBAR_DIR))
     self.assertFalse(_file_exists(LINK_FOOBAR_DIR))
Example #2
0
 def test_rmfile(self):
     self.assertRaises(NotASymlinkError, lambda: symlinks.rm(FOOBAR_TXT))
     self.assertTrue(_file_exists(FOOBAR_TXT))
Example #3
0
 def test_rmdir(self):
     _create_test_link_to_dir()
     symlinks.rm(LINK_FOOBAR_DIR)
     self.assertTrue(_file_exists(FOOBAR_DIR))
     self.assertFalse(_file_exists(LINK_FOOBAR_DIR))
Example #4
0
 def test_rmlink(self):
     _create_test_link()
     symlinks.rm(LINK_FOOBAR)
     self.assertFalse(_file_exists(LINK_FOOBAR))