diff --git a/.gitignore b/.gitignore index e90dc35..041953a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .pytest_cache -__pycache__ \ No newline at end of file +__pycache__ +venv \ No newline at end of file diff --git a/main.py b/main.py index 2810f8a..c6f84f1 100644 --- a/main.py +++ b/main.py @@ -1,9 +1,26 @@ import pytest +CAT_COLORS = ["orange", "tabby", "black", "white", "gray", "calico"] def always_returns_true(): - return False + print("I love my cat Percy!") + print("Percy is soft and fluffy") + + + + print("How old is Percy?") + print("I wonder if Percy would be friends with my cat Bodhi!") + + print("Percy would cower in fear") + return True +def kitty_power(): + for cat in CAT_COLORS: + print(cat) def test_always_returns_true(): assert always_returns_true() + + + + print("Surprise! I changed this line!")