aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2015-03-14 19:52:00 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2018-01-11 19:04:49 -0500
commit6366e5ae8f0ae19c033a2c24c217001c1512292b (patch)
treebd92a121d34228f53fde139d2f8da77b58a835c1 /tests
parentfd628f3e540425b883f36a9c0d288ef1aafdb19e (diff)
downloadmarkdown-6366e5ae8f0ae19c033a2c24c217001c1512292b.tar.gz
markdown-6366e5ae8f0ae19c033a2c24c217001c1512292b.tar.bz2
markdown-6366e5ae8f0ae19c033a2c24c217001c1512292b.zip
Removed support for deprecated config in ext name.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_apis.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/test_apis.py b/tests/test_apis.py
index 48e79e8..d128948 100644
--- a/tests/test_apis.py
+++ b/tests/test_apis.py
@@ -385,13 +385,6 @@ class TestErrors(unittest.TestCase):
markdown.Markdown, extensions=['footnotes']
)
- def testStringConfigExtention(self):
- """ Test that passing configs to an Extension in the name raises a DeprecationWarning. """
- self.assertRaises(
- DeprecationWarning,
- markdown.Markdown, extensions=['markdown.extension.footnotes(PLACE_MARKER=FOO)']
- )
-
def _create_fake_extension(name, has_factory_func=True, is_wrong_type=False, use_old_style=False):
""" Create a fake extension module for testing. """