def test_delete_file_doesnt_exist(self): """ Tests that deleting when the file doesn't exist does *not* throw an error. """ # Setup self.assertTrue(not os.path.exists(TEST_REPO_FILENAME)) # Test repo_file = RepoFile(TEST_REPO_FILENAME) repo_file.delete()
def test_delete_repofile(self): """ Tests that deleting a RepoFile correctly deletes the file on disk. """ # Setup self.assertTrue(not os.path.exists(TEST_REPO_FILENAME)) repo_file = RepoFile(TEST_REPO_FILENAME) repo_file.save() self.assertTrue(os.path.exists(TEST_REPO_FILENAME)) # Test repo_file.delete() # Verify self.assertTrue(not os.path.exists(TEST_REPO_FILENAME))