Merge: src/model/model_index: model index uses BKTree
[nit.git] / lib / markdown2 / tests / test_commonmark_indented_code_blocks.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 module test_commonmark_indented_code_blocks is test
16
17 import test_markdown
18
19 class TestCommonmarkIndentedCodeBlocks
20 super TestMarkdownHtml
21 test
22
23 fun test76 is test do
24 var md = """ a simple\n indented code block\n"""
25 var html = """<pre><code>a simple\n indented code block\n</code></pre>\n"""
26 assert md_to_html(md) == html
27 end
28
29 fun test77 is test do
30 var md = """ - foo\n\n bar\n"""
31 var html = """<ul>\n<li>\n<p>foo</p>\n<p>bar</p>\n</li>\n</ul>\n"""
32 assert md_to_html(md) == html
33 end
34
35 fun test78 is test do
36 var md = """1. foo\n\n - bar\n"""
37 var html = """<ol>\n<li>\n<p>foo</p>\n<ul>\n<li>bar</li>\n</ul>\n</li>\n</ol>\n"""
38 assert md_to_html(md) == html
39 end
40
41 fun test79 is test do
42 var md = """ <a/>\n *hi*\n\n - one\n"""
43 var html = """<pre><code>&lt;a/&gt;\n*hi*\n\n- one\n</code></pre>\n"""
44 assert md_to_html(md) == html
45 end
46
47 fun test80 is test do
48 var md = """ chunk1\n\n chunk2\n \n \n \n chunk3\n"""
49 var html = """<pre><code>chunk1\n\nchunk2\n\n\n\nchunk3\n</code></pre>\n"""
50 assert md_to_html(md) == html
51 end
52
53 fun test81 is test do
54 var md = """ chunk1\n \n chunk2\n"""
55 var html = """<pre><code>chunk1\n \n chunk2\n</code></pre>\n"""
56 assert md_to_html(md) == html
57 end
58
59 fun test82 is test do
60 var md = """Foo\n bar\n\n"""
61 var html = """<p>Foo\nbar</p>\n"""
62 assert md_to_html(md) == html
63 end
64
65 fun test83 is test do
66 var md = """ foo\nbar\n"""
67 var html = """<pre><code>foo\n</code></pre>\n<p>bar</p>\n"""
68 assert md_to_html(md) == html
69 end
70
71 fun test84 is test do
72 var md = """# Heading\n foo\nHeading\n------\n foo\n----\n"""
73 var html = """<h1>Heading</h1>\n<pre><code>foo\n</code></pre>\n<h2>Heading</h2>\n<pre><code>foo\n</code></pre>\n<hr />\n"""
74 assert md_to_html(md) == html
75 end
76
77 fun test85 is test do
78 var md = """ foo\n bar\n"""
79 var html = """<pre><code> foo\nbar\n</code></pre>\n"""
80 assert md_to_html(md) == html
81 end
82
83 fun test86 is test do
84 var md = """\n \n foo\n \n\n"""
85 var html = """<pre><code>foo\n</code></pre>\n"""
86 assert md_to_html(md) == html
87 end
88
89 fun test87 is test do
90 var md = """ foo \n"""
91 var html = """<pre><code>foo \n</code></pre>\n"""
92 assert md_to_html(md) == html
93 end
94 end