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/extra | |
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/extra')
-rw-r--r-- | tests/extensions/extra/test.cfg | 16 |
1 files changed, 8 insertions, 8 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 |