From 0b2b234fb5b813d2b75e0c3e444cfe677ee20ceb Mon Sep 17 00:00:00 2001 From: "J. Tanner Netterville" Date: Mon, 21 Oct 2013 17:37:56 -0500 Subject: [PATCH] updated tests --- tests.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests.py b/tests.py index 63802ab..8d5b2fe 100644 --- a/tests.py +++ b/tests.py @@ -98,7 +98,7 @@ class YoutubeTestCase(OEmbedExtensionTestCase): output = self.markdown.convert(text) self.assertEqual(output, expected) - def test_vimeio_link(self): + def test_vimeo_link(self): """ Vimeo video link. """ @@ -136,7 +136,7 @@ class LimitedOEmbedExtensionTestCase(unittest.TestCase): output = self.markdown.convert(text) self.assertEqual(output, expected) - def test_vimeio_link(self): + def test_vimeo_link(self): """ Vimeo video link. """ @@ -145,3 +145,6 @@ class LimitedOEmbedExtensionTestCase(unittest.TestCase): output = self.markdown.convert(text) self.assertEqual(output, expected) + +if __name__ == "__main__": + unittest.main()