diff options
author | Tiago Serafim <tserafim@gmail.com> | 2012-09-08 09:00:57 -0300 |
---|---|---|
committer | Tiago Serafim <tserafim@gmail.com> | 2012-09-08 09:00:57 -0300 |
commit | bcfe4257299034eed6aae8351d115c7691db3a3e (patch) | |
tree | 6a54366949aac0b14492636de3517b497a63edd3 /tests | |
parent | 83382bcefb246f1169b0d01375fcd86cd05b031e (diff) | |
download | markdown-bcfe4257299034eed6aae8351d115c7691db3a3e.tar.gz markdown-bcfe4257299034eed6aae8351d115c7691db3a3e.tar.bz2 markdown-bcfe4257299034eed6aae8351d115c7691db3a3e.zip |
Removed the configs.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_extensions.py | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/tests/test_extensions.py b/tests/test_extensions.py index ca1520e..78c6d9d 100644 --- a/tests/test_extensions.py +++ b/tests/test_extensions.py @@ -288,18 +288,9 @@ class TestAdmonition(unittest.TestCase): def testComplexSettings(self): """ Test Complex Settings. """ - # config = { - # 'styles': { - # 'note': ('note', 'Please Note'), - # 'didyouknow': ('note', 'Did you know?'), - # } - # } - md = markdown.Markdown( extensions=['admonition'], - extension_configs={ - 'admonition': [] - }, + extension_configs={}, safe_mode=True) self.assertEqual(md.convert(self.text), '<div class="admonition note">\n' |