aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.lvimrc2
-rw-r--r--tests/test_rst_tables.py14
2 files changed, 16 insertions, 0 deletions
diff --git a/.lvimrc b/.lvimrc
new file mode 100644
index 0000000..bc3256c
--- /dev/null
+++ b/.lvimrc
@@ -0,0 +1,2 @@
+" Only consider source files under src
+let PyUnitSourceRoot = "src"
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)