Skip to content
Snippets Groups Projects
test_hello.py 194 B
Newer Older

class TestMyModule(unittest.TestCase):
    def test_hello(self):
        self.assertEqual(pak.main(), "Hello, World!")

if __name__ == '__main__':
    unittest.main()