From d8581527ab1c0a770ce672b1cdd7dcbaaddecea2 Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Wed, 18 Aug 2010 14:24:30 +0200 Subject: Change test root. --- tests/test_rst_tables.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/test_rst_tables.py (limited to 'tests') diff --git a/tests/test_rst_tables.py b/tests/test_rst_tables.py new file mode 100644 index 0000000..55aaffc --- /dev/null +++ b/tests/test_rst_tables.py @@ -0,0 +1,14 @@ +import unittest +import rst_tables + +class TestRSTTableFormatter(unittest.TestCase): + + def setUp(self): + pass + + def tearDown(self): + pass + + def testSomeThing(self): + input = "foo" + self.assertEquals("foo", input) -- cgit v1.2.3