Exemple #1
0
 def testFirstCall(self):
     "1st call"
     fizzbuzzer = FizzBuzzer()
     eq_('1', fizzbuzzer.call())
Exemple #2
0
 def testThirdCall(self):
     "3rd call"
     fizzbuzzer = FizzBuzzer()
     fizzbuzzer.call()
     fizzbuzzer.call()
     eq_('fizz', fizzbuzzer.call())
Exemple #3
0
 def testSecondCall(self):
     "2nd call"
     fizzbuzzer = FizzBuzzer()
     fizzbuzzer.call()
     eq_('2', fizzbuzzer.call())
	def testSecondCall(self):
		"2nd call"
		fizzbuzzer = FizzBuzzer()
		fizzbuzzer.call()
		eq_('2', fizzbuzzer.call())
	def testFirstCall(self):
		"1st call"
		fizzbuzzer = FizzBuzzer()
		eq_('1', fizzbuzzer.call())
	def testThirdCall(self):
		"3rd call"
		fizzbuzzer = FizzBuzzer()
		fizzbuzzer.call()
		fizzbuzzer.call()
		eq_('fizz', fizzbuzzer.call())