summaryrefslogtreecommitdiffstats
path: root/test/test_formatter.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_formatter.py')
-rw-r--r--test/test_formatter.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_formatter.py b/test/test_formatter.py
index 0992f4b..dbdccba 100644
--- a/test/test_formatter.py
+++ b/test/test_formatter.py
@@ -340,6 +340,8 @@ class TestFormatter(unittest.TestCase):
self._run_test("{'foobar'[:3]}", value)
self._run_test("{z|'foo'}" , value)
self._run_test("{z|''|'foo'}" , value)
+ self._run_test("{z|''}" , "")
+ self._run_test("{''|''}" , "")
self._run_test("{_lit[foo]}" , value)
self._run_test("{_lit[foo]!u}" , value.upper())