Exemple #1
0
 def test_root_folder(self):
     """Make sure the root folder is treated correctly."""
     eq_(linked_pathname('', 'stuff'), [('/stuff/source', 'stuff')])
Exemple #2
0
 def test_root_folder(self):
     """Make sure the root folder is treated correctly."""
     eq_(linked_pathname('', 'stuff'), [('/stuff/source', 'stuff')])
Exemple #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')])
Exemple #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')])