Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
language: python
python:
- 3.8
script:
- python -m unittest discover test
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/TestWithPatch.py → test/test_with_patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class TestWithPatch(unittest.TestCase):
def test_tracks_temperature_change(self, mock):
tracker = TemperatureTracker()
tracker.record_initial_temperature()
self.assertEqual(10, tracker.find_temperature_change())
self.assertEqual(20, tracker.find_temperature_change())


if __name__ == '__main__':
Expand Down