Skip to content

Commit c40fdbb

Browse files
committed
Add test for markdown tables
1 parent 5c8250a commit c40fdbb

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tests/test_markdown.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -119,17 +119,17 @@ def test_inline_code():
119119
def test_markdown_table():
120120
markdown = Markdown(
121121
"""\
122-
| Year | Title | Director | Box Office (USD) |
123-
|------|:------------------------------------------------:|:------------------|------------------:|
124-
| 1982 | E.T. the Extra-Terrestrial | Steven Spielberg | $792.9 million |
125-
| 1980 | Star Wars: Episode V – The Empire Strikes Back | Irvin Kershner | $538.4 million |
126-
| 1983 | Star Wars: Episode VI – Return of the Jedi | Richard Marquand | $475.1 million |
127-
| 1981 | Raiders of the Lost Ark | Steven Spielberg | $389.9 million |
128-
| 1984 | Indiana Jones and the Temple of Doom | Steven Spielberg | $333.1 million |
129-
"""
122+
| Year | Title | Director | Box Office (USD) |
123+
|------|:------------------------------------------------:|:------------------|------------------:|
124+
| 1982 | E.T. the Extra-Terrestrial | Steven Spielberg | $792.9 million |
125+
| 1980 | Star Wars: Episode V – The Empire Strikes Back | Irvin Kershner | $538.4 million |
126+
| 1983 | Star Wars: Episode VI – Return of the Jedi | Richard Marquand | $475.1 million |
127+
| 1981 | Raiders of the Lost Ark | Steven Spielberg | $389.9 million |
128+
| 1984 | Indiana Jones and the Temple of Doom | Steven Spielberg | $333.1 million |
129+
"""
130130
)
131131
result = render(markdown)
132-
expected = "\x1b[48;2;39;40;34m \x1b[0m\n\x1b[48;2;39;40;34m \x1b[0m\x1b[48;2;39;40;34m| Year | Title | Director | Box Office (USD) \x1b[0m\x1b[48;2;39;40;34m \x1b[0m\n\x1b[48;2;39;40;34m \x1b[0m\x1b[48;2;39;40;34m|------|:------------------------------------------------:|:------------------|------------------:\x1b[0m\x1b[48;2;39;40;34m \x1b[0m\n\x1b[48;2;39;40;34m \x1b[0m\x1b[48;2;39;40;34m| 1982 | E.T. the Extra-Terrestrial | Steven Spielberg | $792.9 million \x1b[0m\x1b[48;2;39;40;34m \x1b[0m\n\x1b[48;2;39;40;34m \x1b[0m\x1b[48;2;39;40;34m| 1980 | Star Wars: Episode V – The Empire Strikes Back | Irvin Kershner | $538.4 million \x1b[0m\x1b[48;2;39;40;34m \x1b[0m\n\x1b[48;2;39;40;34m \x1b[0m\x1b[48;2;39;40;34m| 1983 | Star Wars: Episode VI – Return of the Jedi | Richard Marquand | $475.1 million \x1b[0m\x1b[48;2;39;40;34m \x1b[0m\n\x1b[48;2;39;40;34m \x1b[0m\x1b[48;2;39;40;34m| 1981 | Raiders of the Lost Ark | Steven Spielberg | $389.9 million \x1b[0m\x1b[48;2;39;40;34m \x1b[0m\n\x1b[48;2;39;40;34m \x1b[0m\x1b[48;2;39;40;34m| 1984 | Indiana Jones and the Temple of Doom | Steven Spielberg | $333.1 million \x1b[0m\x1b[48;2;39;40;34m \x1b[0m\n\x1b[48;2;39;40;34m \x1b[0m\n"
132+
expected = "\n┏━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┓\n\x1b[1m \x1b[0m\x1b[1mYear\x1b[0m\x1b[1m \x1b[0m┃\x1b[1m \x1b[0m\x1b[1m Title \x1b[0m\x1b[1m \x1b[0m┃\x1b[1m \x1b[0m\x1b[1mDirector \x1b[0m\x1b[1m \x1b[0m┃\x1b[1m \x1b[0m\x1b[1mBox Office (USD)\x1b[0m\x1b[1m \x1b[0m┃\n┡━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━┩\n│ 1982 │ E.T. the Extra-Terrestrial │ Steven Spielberg │ $792.9 million │\n│ 1980 │ Star Wars: Episode V – The Empire Strikes Back │ Irvin Kershner │ $538.4 million │\n│ 1983 │ Star Wars: Episode VI – Return of the Jedi │ Richard Marquand │ $475.1 million │\n│ 1981 │ Raiders of the Lost Ark │ Steven Spielberg │ $389.9 million │\n│ 1984 │ Indiana Jones and the Temple of Doom │ Steven Spielberg │ $333.1 million │\n└──────┴────────────────────────────────────────────────┴──────────────────┴──────────────────┘\n"
133133
assert result == expected
134134

135135

0 commit comments

Comments
 (0)