2752: Move Python tests to dedicated subdirectory.
[arvados.git] / sdk / python / test_util.py
diff --git a/sdk/python/test_util.py b/sdk/python/test_util.py
deleted file mode 100644 (file)
index f9e5d8c..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-import unittest
-import os
-import arvados.util
-
-class MkdirDashPTest(unittest.TestCase):
-    def setUp(self):
-        try:
-            os.path.mkdir('./tmp')
-        except:
-            pass
-    def tearDown(self):
-        try:
-            os.unlink('./tmp/bar')
-            os.rmdir('./tmp/foo')
-            os.rmdir('./tmp')
-        except:
-            pass
-    def runTest(self):
-        arvados.util.mkdir_dash_p('./tmp/foo')
-        with open('./tmp/bar', 'wb') as f:
-            f.write('bar')
-        self.assertRaises(OSError, arvados.util.mkdir_dash_p, './tmp/bar')