From d6924f803904d25a7f9cac2ec69f421d7a5bdeab Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 5 Mar 2012 03:27:40 +0100 Subject: selftest.run: Factor out expand_command_list. --- selftest/tests/test_run.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'selftest/tests') diff --git a/selftest/tests/test_run.py b/selftest/tests/test_run.py index 040c143895..f7a1dda436 100644 --- a/selftest/tests/test_run.py +++ b/selftest/tests/test_run.py @@ -19,7 +19,10 @@ """Tests for selftest.run.""" -from selftest.run import expand_environment_strings +from selftest.run import ( + expand_command_list, + expand_environment_strings, + ) from selftest.tests import TestCase @@ -36,3 +39,12 @@ class ExpandEnvironmentStringsTests(TestCase): def test_unknown(self): self.assertEquals("foo $BLA", expand_environment_strings("foo $BLA", {})) + + +class ExpandCommandListTests(TestCase): + + def test_no_list(self): + self.assertIs(None, expand_command_list("test bla")) + + def test_list(self): + self.assertEquals("test --list", expand_command_list("test $LISTOPT")) -- cgit