summaryrefslogtreecommitdiff
path: root/morphlib/artifact_tests.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@gmail.com>2014-09-10 09:09:23 +0000
committerRichard Maw <richard.maw@gmail.com>2014-09-19 12:43:26 +0000
commit15d1a32331883c3057fc3965b1f61dbfe0ae478d (patch)
treec53c383b17cfabc0ad82b7b63966261d58bcaec6 /morphlib/artifact_tests.py
parent30bd3185050bc7997a032ca32f0a5ac9b5e76ed9 (diff)
downloadmorph-15d1a32331883c3057fc3965b1f61dbfe0ae478d.tar.gz
FIXUP: Fix up unit tests from change allowing multiple sources
This is logically part of the previous patch, but has been split out to ease reviewing.
Diffstat (limited to 'morphlib/artifact_tests.py')
-rw-r--r--morphlib/artifact_tests.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/morphlib/artifact_tests.py b/morphlib/artifact_tests.py
index 75dfd870..3b817823 100644
--- a/morphlib/artifact_tests.py
+++ b/morphlib/artifact_tests.py
@@ -39,13 +39,16 @@ class ArtifactTests(unittest.TestCase):
include:
- usr/include
''')
- self.source = morphlib.source.Source(
- 'repo', 'ref', 'sha1', 'tree', morph, 'chunk.morph')
+ self.source, = morphlib.source.make_sources('repo', 'ref',
+ 'chunk.morph', 'sha1',
+ 'tree', morph)
self.artifact_name = 'chunk-runtime'
- self.artifact = morphlib.artifact.Artifact(
- self.source, self.artifact_name)
- self.other = morphlib.artifact.Artifact(
- self.source, self.artifact_name)
+ self.artifact = self.source.artifacts[self.artifact_name]
+ self.other_source, = morphlib.source.make_sources('repo', 'ref',
+ 'chunk.morph',
+ 'sha1', 'tree',
+ morph)
+ self.other = self.other_source.artifacts[self.artifact_name]
def test_constructor_sets_source(self):
self.assertEqual(self.artifact.source, self.source)