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/extra/test.cfg | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'tests/extensions/extra/test.cfg') 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 -- cgit v1.2.3