Esempio n. 1
0
 def test_type_of_directory(self):
     with self.assertRaises(ValueError):
         get_directory_path(sys.executable)
Esempio n. 2
0
 def test_existence_of_directory(self):
     with self.assertRaises(ValueError):
         get_directory_path('/not/a/dir')
Esempio n. 3
0
 def test_converts_relative_paths(self):
     self.assertTrue(get_directory_path('.').samefile(os.getcwd()))
Esempio n. 4
0
 def test_takes_absolute_paths(self):
     self.assertTrue(get_directory_path(os.getcwd()).samefile(os.getcwd()))
Esempio n. 5
0
 def rundir(self, value):
     self._rundir = get_directory_path(value)
Esempio n. 6
0
 def directory(self, value):
     self._directory = get_directory_path(value)