aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_markupsafe.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/test_markupsafe.py b/tests/test_markupsafe.py
index bd42d98..fcd9347 100644
--- a/tests/test_markupsafe.py
+++ b/tests/test_markupsafe.py
@@ -146,13 +146,6 @@ def test_formatting_with_objects():
assert Markup("{s}").format(s=Stringable()) == Markup("строка")
-def test_all_set():
- import markupsafe as markup
-
- for item in markup.__all__:
- getattr(markup, item)
-
-
def test_escape_silent(escape, escape_silent):
assert escape_silent(None) == Markup()
assert escape(None) == Markup(None)