summaryrefslogtreecommitdiff
path: root/blessings/tests.py
diff options
context:
space:
mode:
authorErik Rose <grinch@grinchcentral.com>2012-06-16 16:58:05 -0700
committerErik Rose <grinch@grinchcentral.com>2012-06-16 16:58:05 -0700
commitcc42aad389c4022c5b7a1cfd72c4173d1ee23e62 (patch)
tree2a82e14bc74673fb0a4fe346651860506d3135b3 /blessings/tests.py
parentd04c99970194449ca2db0592243f7ea189f5a098 (diff)
downloadblessings-cc42aad389c4022c5b7a1cfd72c4173d1ee23e62.tar.gz
Provide a decent way to say "don't style". Closes #18.
Diffstat (limited to 'blessings/tests.py')
-rw-r--r--blessings/tests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/blessings/tests.py b/blessings/tests.py
index 817e766..a885c65 100644
--- a/blessings/tests.py
+++ b/blessings/tests.py
@@ -248,3 +248,9 @@ def test_init_descriptor_always_initted():
"""We should be able to get a height and width even on no-tty Terminals."""
t = Terminal(stream=StringIO())
eq_(type(t.height), int)
+
+
+def test_force_styling_none():
+ """If ``force_styling=None`` is passed to the constructor, don't ever do styling."""
+ t = TestTerminal(force_styling=None)
+ eq_(t.save, '')