diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4fcaee2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: python +python: + - 3.6 +script: + - python -m unittest discover test \ No newline at end of file diff --git a/clock.py b/clock.py index aa91912..c019fc9 100644 --- a/clock.py +++ b/clock.py @@ -1,5 +1,8 @@ import time +""" +This is a mechanism to tell the time +""" def whats_the_time(): return time.time() \ No newline at end of file diff --git a/test/TestClock.py b/test/test_clock.py similarity index 100% rename from test/TestClock.py rename to test/test_clock.py diff --git a/test/TestWithMock.py b/test/test_with_mock.py similarity index 100% rename from test/TestWithMock.py rename to test/test_with_mock.py diff --git a/test/TestWithPatch.py b/test/test_with_patch.py similarity index 100% rename from test/TestWithPatch.py rename to test/test_with_patch.py