summaryrefslogtreecommitdiff
path: root/morphlib/workspace_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/workspace_tests.py')
-rw-r--r--morphlib/workspace_tests.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/morphlib/workspace_tests.py b/morphlib/workspace_tests.py
index 7837481a..b9c4957a 100644
--- a/morphlib/workspace_tests.py
+++ b/morphlib/workspace_tests.py
@@ -83,3 +83,11 @@ class WorkspaceTests(unittest.TestCase):
morphlib.workspace.NotInWorkspace,
morphlib.workspace.open, self.tempdir)
+ def test_invents_appropriate_name_for_system_branch_directory(self):
+ self.create_it()
+ ws = morphlib.workspace.open(self.workspace_dir)
+ branch = 'foo/bar'
+ self.assertEqual(
+ ws.get_default_system_branch_directory_name(branch),
+ os.path.join(self.workspace_dir, branch))
+