summaryrefslogtreecommitdiff
path: root/markupsafe/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'markupsafe/tests.py')
-rw-r--r--markupsafe/tests.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/markupsafe/tests.py b/markupsafe/tests.py
index 51b7bb4..7c81cda 100644
--- a/markupsafe/tests.py
+++ b/markupsafe/tests.py
@@ -40,6 +40,11 @@ class MarkupTestCase(unittest.TestCase):
assert Markup("<em>Foo &amp; Bar</em>").striptags() == "Foo & Bar"
assert Markup("&lt;test&gt;").unescape() == "<test>"
+ def test_all_set(self):
+ import markupsafe as markup
+ for item in markup.__all__:
+ getattr(markup, item)
+
class MarkupLeakTestCase(unittest.TestCase):