Skip to content

Instantly share code, notes, and snippets.

@lily-mara
Created December 13, 2017 00:32
Show Gist options
  • Save lily-mara/55d4ff9641a55c825384df3553fcde18 to your computer and use it in GitHub Desktop.
Save lily-mara/55d4ff9641a55c825384df3553fcde18 to your computer and use it in GitHub Desktop.
def greater_than_5(x):
return x > 5
from app import greater_than_5
def test_5():
assert not greater_than_5(5)
def test_3():
assert not greater_than_5(3)
def test_11():
assert greater_than_5(11)
def test_30():
assert not greater_than_5(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment