summaryrefslogtreecommitdiff
path: root/morphlib/cachekeycomputer_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/cachekeycomputer_tests.py')
-rw-r--r--morphlib/cachekeycomputer_tests.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/morphlib/cachekeycomputer_tests.py b/morphlib/cachekeycomputer_tests.py
index 82d3e6e5..4847218f 100644
--- a/morphlib/cachekeycomputer_tests.py
+++ b/morphlib/cachekeycomputer_tests.py
@@ -85,6 +85,14 @@ class CacheKeyComputerTests(unittest.TestCase):
source = morphlib.source.Source('repo', 'original/ref', 'sha',
morphlib.morph2.Morphology(text), name)
self.source_pool.add(source)
+ # FIXME: This should use MorphologyFactory
+ m = source.morphology
+ if m['kind'] == 'system':
+ m.builds_artifacts = [m['name'] + '-rootfs']
+ elif m['kind'] == 'stratum':
+ m.builds_artifacts = [m['name']]
+ elif m['kind'] == 'chunk':
+ m.builds_artifacts = [m['name']]
self.build_env = DummyBuildEnvironment({
"USER": "foouser",
"USERNAME": "foouser",