summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/buildsystem_tests.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/morphlib/buildsystem_tests.py b/morphlib/buildsystem_tests.py
index c0c2b510..22214b2b 100644
--- a/morphlib/buildsystem_tests.py
+++ b/morphlib/buildsystem_tests.py
@@ -121,3 +121,11 @@ class LookupBuildSystemTests(unittest.TestCase):
self.assertEqual(type(self.lookup('manual')),
morphlib.buildsystem.ManualBuildSystem)
+ def test_looks_up_autotools(self):
+ self.assertEqual(type(self.lookup('autotools')),
+ morphlib.buildsystem.AutotoolsBuildSystem)
+
+ def test_looks_up_dummy(self):
+ self.assertEqual(type(self.lookup('dummy')),
+ morphlib.buildsystem.DummyBuildSystem)
+