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
Binary file added .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions pp.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
with open('test_requirements.txt') as fd:
requirements = [line.rstrip() for line in fd]
12 changes: 6 additions & 6 deletions tests/test_catmath.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@


def test__cat_years_to_hooman_years__middle_age__succeeds():
assert True
cat_age = 7
hooman_age = catmath.cat_years_to_hooman_years(cat_age)
assert hooman_age == 35


def test__cat_years_to_hooman_years__less_than_one_year__succeeds():
assert True


def test__cat_years_to_hooman_years__0__returns_0():
assert True
cat_age = 0.1
hooman_age = catmath.cat_years_to_hooman_years(cat_age)
assert hooman_age == 0.5


# BONUS MATERIAL FOR STEP 2
Expand Down