diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2014-08-29 10:25:29 -0400 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2014-08-29 10:25:29 -0400 |
commit | b1643eb058f44a05523b118632c7b8181b2ffbe7 (patch) | |
tree | 8d07922af20f7ca0cdddd6b52365f35cfaa691f0 /tests/extensions | |
parent | 050c9af032a9147f9072b81eb93cbf16ebcad5c1 (diff) | |
download | markdown-b1643eb058f44a05523b118632c7b8181b2ffbe7.tar.gz markdown-b1643eb058f44a05523b118632c7b8181b2ffbe7.tar.bz2 markdown-b1643eb058f44a05523b118632c7b8181b2ffbe7.zip |
All extension tests now use python dot notation.
All named extensions now use python dot notation in the tests - including
all builtin extensions (eg: 'extra' => 'markdown.extensions.extra'). This
is in anticipation of #336.
Note there are a few tests (in the error tests) that will still need
updating, but not till we make the change as they will test for the
new error message.
Diffstat (limited to 'tests/extensions')
-rw-r--r-- | tests/extensions/extra/test.cfg | 16 | ||||
-rw-r--r-- | tests/extensions/test.cfg | 40 |
2 files changed, 28 insertions, 28 deletions
diff --git a/tests/extensions/extra/test.cfg b/tests/extensions/extra/test.cfg index fe5ca22..ed3e8df 100644 --- a/tests/extensions/extra/test.cfg +++ b/tests/extensions/extra/test.cfg @@ -1,28 +1,28 @@ DEFAULT: extensions: - - extra + - markdown.extensions.extra loose_def_list: extensions: - - def_list + - markdown.extensions.def_list simple_def-lists: extensions: - - def_list + - markdown.extensions.def_list abbr: extensions: - - abbr + - markdown.extensions.abbr footnotes: extensions: - - footnotes + - markdown.extensions.footnotes tables: extensions: - - tables + - markdown.extensions.tables tables_and_attr_list: extensions: - - tables - - attr_list + - markdown.extensions.tables + - markdown.extensions.attr_list diff --git a/tests/extensions/test.cfg b/tests/extensions/test.cfg index 0ef3c94..5605d3f 100644 --- a/tests/extensions/test.cfg +++ b/tests/extensions/test.cfg @@ -1,69 +1,69 @@ attr_list: extensions: - - attr_list - - def_list - - smarty + - markdown.extensions.attr_list + - markdown.extensions.def_list + - markdown.extensions.smarty codehilite: extensions: - - codehilite + - markdown.extensions.codehilite # This passes or not based on version of pygments. skip: True toc: extensions: - - toc + - markdown.extensions.toc toc_invalid: extensions: - - toc + - markdown.extensions.toc toc_out_of_order: extensions: - - toc + - markdown.extensions.toc toc_nested: extensions: - - toc + - markdown.extensions.toc extension_configs: - toc: + markdown.extensions.toc: permalink: True toc_nested2: extensions: - - toc + - markdown.extensions.toc extension_configs: - toc: + markdown.extensions.toc: permalink: "[link]" wikilinks: extensions: - - wikilinks + - markdown.extensions.wikilinks fenced_code: extensions: - - fenced_code + - markdown.extensions.fenced_code github_flavored: extensions: - - fenced_code + - markdown.extensions.fenced_code sane_lists: extensions: - - sane_lists + - markdown.extensions.sane_lists nl2br_w_attr_list: extensions: - - nl2br - - attr_list + - markdown.extensions.nl2br + - markdown.extensions.attr_list admonition: extensions: - - admonition + - markdown.extensions.admonition smarty: extensions: - - smarty + - markdown.extensions.smarty extension_configs: - smarty: + markdown.extensions.smarty: smart_angled_quotes: True |