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