summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2020-04-09 14:00:22 -0700
committerDavid Lord <davidism@gmail.com>2020-04-09 14:00:22 -0700
commit10b931f4456d094303248c7662438dfdea909aba (patch)
tree61b8a8ca5b6d94aeb33904e7350c944c5ae5328c
parent5a004ef28724233c0feb480607da9dd45542ca74 (diff)
downloadmarkupsafe-10b931f4456d094303248c7662438dfdea909aba.tar.gz
remove __all__ test
-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)