7 lines
175 B
Python
Executable file
7 lines
175 B
Python
Executable file
from unittest import TestCase
|
|
|
|
class HelloWorldTest(TestCase):
|
|
def testHelloMsg(self):
|
|
from hello import hello
|
|
self.assertEqual(hello(), "Hello, world!")
|
|
|