aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_rst_tables.py
blob: 55aaffc692dada672b565991f68e5cc60b87becb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)