9 lines
227 B
Python
9 lines
227 B
Python
import unittest
|
|
from src.main import hello_world
|
|
|
|
class TestHelloWorld(unittest.TestCase):
|
|
def test_hello_world(self):
|
|
self.assertEqual(hello_world(), "Hello, World!")
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |