From b1643eb058f44a05523b118632c7b8181b2ffbe7 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Fri, 29 Aug 2014 10:25:29 -0400 Subject: 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. --- tests/extensions/test.cfg | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'tests/extensions/test.cfg') 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 -- cgit v1.2.3