Esempio n. 1
0
 def test_root_folder(self):
     """Make sure the root folder is treated correctly."""
     eq_(linked_pathname('', 'stuff'), [('/stuff/source', 'stuff')])
Esempio n. 2
0
 def test_root_folder(self):
     """Make sure the root folder is treated correctly."""
     eq_(linked_pathname('', 'stuff'), [('/stuff/source', 'stuff')])
Esempio n. 3
0
 def test_deep_path(self):
     """Make sure paths more than one level deep are linked correctly."""
     eq_(linked_pathname('hey/thankyou', 'code'),
         [('/code/source', 'code'), ('/code/source/hey', 'hey'),
          ('/code/source/hey/thankyou', 'thankyou')])
Esempio n. 4
0
 def test_deep_path(self):
     """Make sure paths more than one level deep are linked correctly."""
     eq_(linked_pathname('hey/thankyou', 'code'),
         [('/code/source', 'code'),
          ('/code/source/hey', 'hey'),
          ('/code/source/hey/thankyou', 'thankyou')])