From 4e3224c012df9f74f010eb92203520515e8537b9 Mon Sep 17 00:00:00 2001 From: Dererk Date: Wed, 11 Nov 2015 16:34:34 -0300 Subject: Imported Upstream version 7.7.3 --- tests/test_compile_markdown.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/test_compile_markdown.py') diff --git a/tests/test_compile_markdown.py b/tests/test_compile_markdown.py index 47cbdbb..2275b04 100644 --- a/tests/test_compile_markdown.py +++ b/tests/test_compile_markdown.py @@ -61,6 +61,13 @@ class CompileMarkdownTests(BaseTestCase): actual_output = self.compile(input_str) self.assertEquals(actual_output.strip(), expected_output.strip()) + def test_compile_strikethrough(self): + input_str = '~~strik text~~' + expected_output = '

strik text

' + + actual_output = self.compile(input_str) + self.assertEquals(actual_output.strip(), expected_output.strip()) + def test_compile_html_gist(self): input_str = '''\ Here's a gist file inline: -- cgit v1.2.3