diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2014-08-20 14:32:09 -0400 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2014-08-20 14:32:09 -0400 |
commit | 1918cd26a16bf6051b3fcc791e1f260bad846c72 (patch) | |
tree | f213b5a2b87f9424a1a6391a768c3accb66ff810 /tests/pl | |
parent | e7b6a33f0e3dd37d276a0c18dcbdc62e2c80ed98 (diff) | |
download | markdown-1918cd26a16bf6051b3fcc791e1f260bad846c72.tar.gz markdown-1918cd26a16bf6051b3fcc791e1f260bad846c72.tar.bz2 markdown-1918cd26a16bf6051b3fcc791e1f260bad846c72.zip |
Refactored test framework to use YAML config files rather than INI. Fixes #333.
Diffstat (limited to 'tests/pl')
-rw-r--r-- | tests/pl/Tests_2004/test.cfg | 16 | ||||
-rw-r--r-- | tests/pl/Tests_2007/test.cfg | 40 |
2 files changed, 28 insertions, 28 deletions
diff --git a/tests/pl/Tests_2004/test.cfg b/tests/pl/Tests_2004/test.cfg index d3850f4..80f48e5 100644 --- a/tests/pl/Tests_2004/test.cfg +++ b/tests/pl/Tests_2004/test.cfg @@ -1,10 +1,10 @@ -[DEFAULT] -input_ext=.text -normalize=1 -# comment out next line to run these tests -#skip=1 +DEFAULT: + input_ext: .text + normalize: True + # comment out next line to run these tests + #skip: True -[Yuri-Footnotes] -extensions=footnotes -skip=1 +Yuri-Footnotes: + extensions: footnotes + skip: True diff --git a/tests/pl/Tests_2007/test.cfg b/tests/pl/Tests_2007/test.cfg index c86ca26..d885b71 100644 --- a/tests/pl/Tests_2007/test.cfg +++ b/tests/pl/Tests_2007/test.cfg @@ -1,25 +1,25 @@ -[DEFAULT] -input_ext=.text -normalize=1 -# comment out next line to run these tests -#skip=1 +DEFAULT: + input_ext: .text + normalize: True + # comment out next line to run these tests + #skip: True -[Images] -# the attributes don't get ordered the same so we skip this -skip=1 +Images: + # the attributes don't get ordered the same so we skip this + skip: True -[Code Blocks] -# some weird whitespace issue -skip=1 +Code Blocks: + # some weird whitespace issue + skip: True -[Links, reference style] -# weird issue with nested brackets TODO: fixme -skip=1 + Links, reference style: + # weird issue with nested brackets TODO: fixme + skip: True -[Backslash escapes] -# backticks in raw html attributes TODO: fixme -skip=1 +Backslash escapes: + # backticks in raw html attributes TODO: fixme + skip: True -[Code Spans] -# more backticks in raw html attributes TODO: fixme -skip=1 +Code Spans: + # more backticks in raw html attributes TODO: fixme + skip: True |