diff options
author | Vincent Driessen <vincent@datafox.nl> | 2010-08-18 14:24:30 +0200 |
---|---|---|
committer | Vincent Driessen <vincent@datafox.nl> | 2010-08-18 14:24:30 +0200 |
commit | d8581527ab1c0a770ce672b1cdd7dcbaaddecea2 (patch) | |
tree | 93cd352d553a121cf488026f437f360d0edf5c16 /tests | |
parent | 3013d6afbe4ca23de1571579082d325b44fef4d5 (diff) | |
download | vim-rst-tables-d8581527ab1c0a770ce672b1cdd7dcbaaddecea2.tar.gz vim-rst-tables-d8581527ab1c0a770ce672b1cdd7dcbaaddecea2.tar.bz2 vim-rst-tables-d8581527ab1c0a770ce672b1cdd7dcbaaddecea2.zip |
Change test root.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_rst_tables.py | 14 |
1 files changed, 14 insertions, 0 deletions
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) |