10 lines
259 B
Python
10 lines
259 B
Python
|
# This entrypoint file to be used in development. Start by reading README.md
|
||
|
from time_calculator import add_time
|
||
|
from unittest import main
|
||
|
|
||
|
|
||
|
print(add_time("10:10 PM", "3:30", "monday"))
|
||
|
|
||
|
|
||
|
# Run unit tests automatically
|
||
|
main(module='test_module', exit=False)
|