diff options
author | Waylan Limberg <waylan@gmail.com> | 2009-05-30 22:29:56 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2009-06-05 22:25:51 -0400 |
commit | cc452998dc1af441cf3f9c5d0c7287cb5de48c4a (patch) | |
tree | f138bb00542b47bf382d4ba8f10f0d2a9470ccfe /tests/extensions-x-wikilinks | |
parent | 0ae9951f49eb75c8a9fb9f841673b889763c1811 (diff) | |
download | markdown-cc452998dc1af441cf3f9c5d0c7287cb5de48c4a.tar.gz markdown-cc452998dc1af441cf3f9c5d0c7287cb5de48c4a.tar.bz2 markdown-cc452998dc1af441cf3f9c5d0c7287cb5de48c4a.zip |
Initial implementation of nose testing. Still some cleanup to do, but this shows the differances between the old and the new. Also left one test failing (unsignificant white space only) to demonstrate what a failing test looks like.
Diffstat (limited to 'tests/extensions-x-wikilinks')
-rw-r--r-- | tests/extensions-x-wikilinks/test.cfg | 2 | ||||
-rw-r--r-- | tests/extensions-x-wikilinks/wikilinks.html | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/extensions-x-wikilinks/test.cfg b/tests/extensions-x-wikilinks/test.cfg new file mode 100644 index 0000000..959f38a --- /dev/null +++ b/tests/extensions-x-wikilinks/test.cfg @@ -0,0 +1,2 @@ +[DEFAULT] +extensions=wikilinks diff --git a/tests/extensions-x-wikilinks/wikilinks.html b/tests/extensions-x-wikilinks/wikilinks.html index 1a38535..a76a693 100644 --- a/tests/extensions-x-wikilinks/wikilinks.html +++ b/tests/extensions-x-wikilinks/wikilinks.html @@ -1,5 +1,8 @@ <p>Some text with a <a class="wikilink" href="/WikiLink/">WikiLink</a>.</p> <p>A link with <a class="wikilink" href="/white_space_and_underscores/">white space and_underscores</a> and a empty one.</p> +<p>Another with <a class="wikilink" href="/double_spaces/">double spaces</a> and <a class="wikilink" href="/double__underscores/">double__underscores</a> and +one that <a class="wikilink" href="/has_emphasis_inside/">has <em>emphasis</em> inside</a> and one <a class="wikilink" href="/with_multiple_underscores/">with_multiple_underscores</a> +and one that is <em><a class="wikilink" href="/emphasised/">emphasised</a></em>.</p> <p>And a <a href="http://example.com/RealLink">RealLink</a>.</p> <p><a href="http://example.com/And_A_AutoLink">http://example.com/And_A_AutoLink</a></p> <p>And a <a href="/MarkdownLink/" title="A MarkdownLink">MarkdownLink</a> for |