Skip to content

Commit

Permalink
Add temperature tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yulits committed Feb 8, 2024
1 parent 396a895 commit 4f9e074
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_temperature.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
cases = [
{"from": "C", "amount": 0, "to": "F", "expected": 32},
{"from": "F", "amount": 32, "to": "C", "expected": 0},
{"from": "K", "amount": 0, "to": "C", "expected": -273.15},
{"from": "C", "amount": 0, "to": "K", "expected": 273.15},
]


Expand Down

0 comments on commit 4f9e074

Please sign in to comment.