diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/extensions/sane_lists.html | 13 | ||||
-rw-r--r-- | tests/extensions/sane_lists.txt | 10 | ||||
-rw-r--r-- | tests/options/lazy_ol_off.html | 18 | ||||
-rw-r--r-- | tests/options/lazy_ol_off.txt | 17 | ||||
-rw-r--r-- | tests/test_legacy.py | 2 |
5 files changed, 22 insertions, 38 deletions
diff --git a/tests/extensions/sane_lists.html b/tests/extensions/sane_lists.html index b9fe007..ed51b4d 100644 --- a/tests/extensions/sane_lists.html +++ b/tests/extensions/sane_lists.html @@ -18,4 +18,15 @@ <ul> <li>Unordered again 1. not a list item</li> -</ul>
\ No newline at end of file +</ul> +<ol start="3"> +<li>Bird</li> +<li>McHale</li> +<li>Parish</li> +</ol> +<p>Not a list</p> +<ol start="3"> +<li>Bird</li> +<li>McHale</li> +<li>Parish</li> +</ol>
\ No newline at end of file diff --git a/tests/extensions/sane_lists.txt b/tests/extensions/sane_lists.txt index 51981b3..464149f 100644 --- a/tests/extensions/sane_lists.txt +++ b/tests/extensions/sane_lists.txt @@ -14,3 +14,13 @@ Paragraph * Unordered again 1. not a list item + +3. Bird +1. McHale +8. Parish + +Not a list + +3. Bird +1. McHale +8. Parish
\ No newline at end of file diff --git a/tests/options/lazy_ol_off.html b/tests/options/lazy_ol_off.html deleted file mode 100644 index bff1970..0000000 --- a/tests/options/lazy_ol_off.html +++ /dev/null @@ -1,18 +0,0 @@ -<p>A numbered list from daringfireball:</p> -<ol start="3"> -<li>Bird</li> -<li>McHale</li> -<li>Parish</li> -</ol> -<p>Again:</p> -<ol start="3"> -<li>Bird</li> -<li>McHale</li> -<li>Parish</li> -</ol> -<p>Now starting with 1:</p> -<ol> -<li>Bird</li> -<li>McHale</li> -<li>Parish</li> -</ol>
\ No newline at end of file diff --git a/tests/options/lazy_ol_off.txt b/tests/options/lazy_ol_off.txt deleted file mode 100644 index 611f3a6..0000000 --- a/tests/options/lazy_ol_off.txt +++ /dev/null @@ -1,17 +0,0 @@ -A numbered list from daringfireball: - -3. Bird -1. McHale -8. Parish - -Again: - -3. Bird -1. McHale -8. Parish - -Now starting with 1: - -1. Bird -1. McHale -8. Parish diff --git a/tests/test_legacy.py b/tests/test_legacy.py index 2e0c982..976a84e 100644 --- a/tests/test_legacy.py +++ b/tests/test_legacy.py @@ -44,8 +44,6 @@ class TestMisc(LegacyTestCase): class TestOptions(LegacyTestCase): location = os.path.join(parent_test_dir, 'options') - lazy_ol_off = Kwargs(lazy_ol=False) - html4 = Kwargs(output_format='html4') no_smart_emphasis = Kwargs(smart_emphasis=False) |