Esempio n. 1
0
 def test_retornaFizzBuzz_com_1(self):
     assert fizz_buzz(1) == 1
Esempio n. 2
0
 def test_retornaFizzBuzz_com_99(self):
     assert fizz_buzz(99) == 'fizz'
Esempio n. 3
0
 def test_retornaFizzBuzz_com_125(self):
     assert fizz_buzz(125) == 'buzz'
Esempio n. 4
0
 def test_retornaFizzBuzz_com_15(self):
     assert fizz_buzz(15) == 'fizz-buzz'
Esempio n. 5
0
 def test_retornaFizzBuzz_com_30(self):
     assert fizz_buzz(30) == 'fizz-buzz'
Esempio n. 6
0
 def test_retornaFizzBuzz_com_10(self):
     assert fizz_buzz(10) == 'buzz'
Esempio n. 7
0
 def test_retornaFizzBuzz_com_12(self):
     assert fizz_buzz(12) == 'fizz'
Esempio n. 8
0
 def test_retornaFizzBuzz_com_8(self):
     assert fizz_buzz(8) == 8
Esempio n. 9
0
 def test_retornaFizzBuzz_com_7(self):
     assert fizz_buzz(7) == 7
Esempio n. 10
0
 def test_retornaFizzBuzz_com_6(self):
     assert fizz_buzz(6) == 'fizz'
Esempio n. 11
0
 def test_retornaFizzBuzz_com_4(self):
     assert fizz_buzz(4) == 4
Esempio n. 12
0
 def test_retornaFizzBuzz_com_2(self):
     assert fizz_buzz(2) == 2