about summary refs log tree commit diff
path: root/tests/test_hello.py
blob: 2af3f3befb308bc2e5c23743f25f61268ec834d7 (plain)
1
2
3
4
5
6
7
8
import unittest

class TestHello(unittest.TestCase):
    def test_hello(self):
        self.assertEqual("hello", "hello")

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