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