Test: Merged tw-1475.t into configuration.t

This commit is contained in:
Paul Beckingham 2015-10-25 10:44:04 -04:00
parent f6f1fe0f02
commit 7ac8bfe737
2 changed files with 21 additions and 63 deletions

View file

@ -36,7 +36,6 @@ from basetest import Task, TestCase
class TestConfiguration(TestCase):
def setUp(self):
"""Executed before each test in the class"""
self.t = Task()
@ -73,6 +72,27 @@ class TestConfiguration(TestCase):
code, out, err = self.t.runError("config foo")
self.assertIn("No entry named 'foo' found.", err)
class TestBug1475(TestCase):
def setUp(self):
"""Executed before each test in the class"""
self.t = Task()
def test_config_unmolested(self):
"""1475: Verify that a config value is not borked by lex/eval"""
self.t.config("name", "one/two/three")
code, out, err = self.t("_get rc.name")
self.assertEqual("one/two/three\n", out)
def test_config_unmolested_2(self):
"""1475: Verify that a config value is not borked by lex/eval - literal"""
self.t("config name one/two/three", input="y\n")
code, out, err = self.t("_get rc.name")
self.assertEqual("one/two/three\n", out)
if __name__ == "__main__":
from simpletap import TAPTestRunner
unittest.main(testRunner=TAPTestRunner())