예제 #1
0
 def test2(self):
     self.assertEqual(moo(2), 'moomoo')
예제 #2
0
 def test3(self):
     self.assertEqual(moo(3), 'moomoomoo')
예제 #3
0
 def test0(self):
     self.assertEqual(moo(0), '')
예제 #4
0
 def test1(self):
     self.assertEqual(moo(1), 'moo')
예제 #5
0
 def test1(self):
     self.assertEqual(moo(1), "moo")
예제 #6
0
 def test2(self):
     self.assertEqual(moo(2), "moomoo")
예제 #7
0
 def test0(self):
     self.assertEqual(
         moo(0), '')  #compares output to what it's desire, in this case ''
예제 #8
0
 def test3(self):
   self.assertEqual(moo(3), 'moomoomoo')
예제 #9
0
 def test2(self):
   self.assertEqual(moo(2), 'moomoo')
예제 #10
0
 def test1(self):
   self.assertEqual(moo(1), 'moo')
예제 #11
0
 def test0(self):
   self.assertEqual(moo(0), '')