@joeposaurus@chaos.social
#AgileTD
def test_fizzbuzz_1():
assert fizzbuzz(1) == 1
def fizzbuzz(length):
return 1
def fizzbuzz(length):
if length == 1:
return "1"
else:
return "1,2"
def test_fizzbuzz_1():
assert fizzbuzz(1) == "1"
def test_fizzbuzz_2():
assert fizzbuzz(2) == "1,2"