[SCM] GUI front-end for Debian Live. branch, master, updated. d6ae12437ff380db2b87363283adc42142dc4637
Chris Lamb
chris at chris-lamb.co.uk
Fri Apr 11 02:13:56 UTC 2008
The following commit has been merged in the master branch:
commit 5dd17266d8189ed93c828c14c04f83843eb8729d
Author: Chris Lamb <chris at chris-lamb.co.uk>
Date: Fri Apr 11 01:05:39 2008 +0100
test_config_constructor.py: Allow passing arguments when re-constructing
Signed-off-by: Chris Lamb <chris at chris-lamb.co.uk>
diff --git a/tests/test_config_constructor.py b/tests/test_config_constructor.py
index 72267e6..038c63e 100755
--- a/tests/test_config_constructor.py
+++ b/tests/test_config_constructor.py
@@ -48,5 +48,10 @@ class TestOther(TestConfigConstructor):
lh = Config(self.dir, packages_lists="hello there")
self.assertEqual(lh.chroot['LH_PACKAGES_LISTS'], ['hello', 'there'])
+ def testAllowPassingOptionsSecondTime(self):
+ lh = Config(self.dir, packages_lists="one two")
+ lh = Config(self.dir, packages_lists="three four")
+ self.assertEqual(lh.chroot['LH_PACKAGES_LISTS'], ['three', 'four'])
+
if __name__ == "__main__":
unittest.main()
--
GUI front-end for Debian Live.
More information about the debian-live-changes
mailing list