Ejemplo n.º 1
0
	def testZeroless(self):
		self.assertEqual(funwithfibo.fibo(-1), 0, msg="the input is less than 0")
Ejemplo n.º 2
0
	def testNotDigit(self):
		self.assertEqual(funwithfibo.fibo("adee1@"), 0, msg="Not a valid digit")
Ejemplo n.º 3
0
	def testZero(self):
		self.assertEqual(funwithfibo.fibo(0), 0, msg="the input is 0")