Exemplo n.º 1
0
 def test_sibling_of_root(self):
     with self.assertRaises(ValueError):
         Path.root().sibling("c")
Exemplo n.º 2
0
 def test_parent_of_root(self):
     self.assertEqual(Path.root().parent(), Path.root())
Exemplo n.º 3
0
 def test_root(self):
     self.assertEqual(Path.root(), Path())
Exemplo n.º 4
0
 def test_root_heritage(self):
     self.assertEqual(list(Path.root().heritage()), [Path.root()])
Exemplo n.º 5
0
 def test_cwd_is_absolute(self):
     self.assertEqual(Path.cwd().relative_to(Path.root()), Path.cwd())