diff options
author | Tim Hatch <tim@timhatch.com> | 2014-10-03 22:41:54 -0700 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2014-10-03 22:41:54 -0700 |
commit | 24ee4c42972ee33e6321f79f1f5f72631cebb795 (patch) | |
tree | 212c650e59391bf1a9f9aa037e56721869c9030b /tests/test_util.py | |
parent | 1c26f1a864cbc8deee3fef0cb292e3e67c084200 (diff) | |
download | pygments-24ee4c42972ee33e6321f79f1f5f72631cebb795.tar.gz |
Add util function for keyword list formatting
Diffstat (limited to 'tests/test_util.py')
-rw-r--r-- | tests/test_util.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_util.py b/tests/test_util.py index 59ecf14f..2581be0b 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -133,3 +133,13 @@ class UtilTest(unittest.TestCase): m = r.match(first_non_bmp * 2) self.assertTrue(m) self.assertEquals(m.end(), len(first_non_bmp) * 2) + + def test_format_lines(self): + lst = ['cat', 'dog'] + output = util.format_lines('var', lst) + print output + d = {} + exec output in d + print d['var'] + self.assertTrue(isinstance(d['var'], tuple)) + self.assertEquals(('cat', 'dog'), d['var']) |