summaryrefslogtreecommitdiff
path: root/morphlib/buildsystem_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/buildsystem_tests.py')
-rw-r--r--morphlib/buildsystem_tests.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/morphlib/buildsystem_tests.py b/morphlib/buildsystem_tests.py
index c8e9058f..362b85dd 100644
--- a/morphlib/buildsystem_tests.py
+++ b/morphlib/buildsystem_tests.py
@@ -90,3 +90,16 @@ class DetectBuildSystemTests(unittest.TestCase):
bs = morphlib.buildsystem.detect_build_system(self.tempdir)
self.assertEqual(type(bs), morphlib.buildsystem.AutotoolsBuildSystem)
+
+class LookupBuildSystemTests(unittest.TestCase):
+
+ def lookup(self, name):
+ return morphlib.buildsystem.lookup_build_system(name)
+
+ def test_raises_keyerror_for_unknown_name(self):
+ self.assertRaises(KeyError, self.lookup, 'unkonwn')
+
+ def test_looks_up_manual(self):
+ self.assertEqual(type(self.lookup('manual')),
+ morphlib.buildsystem.ManualBuildSystem)
+