summaryrefslogtreecommitdiff
path: root/morphlib/gitdir_tests.py
diff options
context:
space:
mode:
authorTiago Gomes <tiago.gomes@codethink.co.uk>2015-11-20 13:57:31 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2016-03-25 21:02:33 +0000
commitddb8b27d5056074013a89d8ab277e39fdc1f069d (patch)
tree5ecf61560608dbea1ec1895e5cff2622959556b7 /morphlib/gitdir_tests.py
parent9404317020ff0455cbfd3ca7976d546af823759b (diff)
downloadmorph-ddb8b27d5056074013a89d8ab277e39fdc1f069d.tar.gz
WIP Add support for multiple sources per chunk
TODO: - Add API to the cache server to retrieve a submodule commit from a given path. - Fix cross-bootstrap command. Change-Id: I3475c2bcb648a272fee33bc878a521f79d4e6581
Diffstat (limited to 'morphlib/gitdir_tests.py')
-rw-r--r--morphlib/gitdir_tests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/morphlib/gitdir_tests.py b/morphlib/gitdir_tests.py
index 4da98bbc..d74b4a13 100644
--- a/morphlib/gitdir_tests.py
+++ b/morphlib/gitdir_tests.py
@@ -104,6 +104,12 @@ class GitDirectoryTests(unittest.TestCase):
gitdir = self.empty_git_directory()
self.assertIsInstance(gitdir.get_index(), morphlib.gitindex.GitIndex)
+ def test_non_existent_submodule_path_raises_error(self):
+ gitdir = self.empty_git_directory()
+ self.assertRaises(
+ morphlib.gitdir.MissingSubmoduleCommitError,
+ gitdir.get_submodule_commit, 'master', 'somepath')
+
class GitDirectoryAnchoredRefTests(unittest.TestCase):