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