# test.py ''' Instructions: Run it: python tests.py Or verbose: python -m unittest -v tests.py In the latter case you can delete the: if __name__ == '__main__': unittest.main() ''' import unittest import docs class TestDocs(unittest.TestCase): def test_add(self): self.assertEqual(docs.add(1,2), 3) if __name__ == '__main__': unittest.main()