From a737372032874dba4dcc4dcb45d20ba400b328f7 Mon Sep 17 00:00:00 2001 From: Luis Pabon Date: Mon, 8 Jul 2013 15:47:46 -0400 Subject: Removed unused metadata key and do_rmdir func Change-Id: Ibcef5d817390a11d85cf125bb9addfbfded1b019 Signed-off-by: Luis Pabon Reviewed-on: http://review.gluster.org/5301 Reviewed-by: Mohammed Junaid Reviewed-by: Peter Portante Tested-by: Peter Portante --- test/unit/common/test_fs_utils.py | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'test') diff --git a/test/unit/common/test_fs_utils.py b/test/unit/common/test_fs_utils.py index 175a362..b31a9a2 100644 --- a/test/unit/common/test_fs_utils.py +++ b/test/unit/common/test_fs_utils.py @@ -237,24 +237,6 @@ class TestFsUtils(unittest.TestCase): finally: os.rmdir(tmpdir) - def test_do_rmdir(self): - tmpdir = mkdtemp() - fs.do_rmdir(tmpdir) - assert not os.path.exists(tmpdir) - assert not fs.do_rmdir(os.path.join('/tmp', str(random.random()))) - - def test_do_rmdir_err(self): - fd, tmpfile = mkstemp() - try: - fs.do_rmdir(tmpfile) - except OSError: - pass - else: - self.fail('OSError expected') - finally: - os.close(fd) - os.remove(tmpfile) - def test_do_rename(self): srcpath = mkdtemp() try: -- cgit