예제 #1
0
파일: test.py 프로젝트: alokp896/Projects
 def test1(self):
     self.assertEqual(-1, chops.chop(3, [1]))
예제 #2
0
파일: test.py 프로젝트: alokp896/Projects
 def test9(self):
     self.assertEqual(-1, chops.chop(6, [1, 3, 5]))
예제 #3
0
파일: test.py 프로젝트: alokp896/Projects
 def test12(self):
     self.assertEqual(-1, chops.chop(6, [1, 3, 5, 7]))
예제 #4
0
파일: test.py 프로젝트: alokp896/Projects
 def test7(self):
     self.assertEqual(-1, chops.chop(2, [1, 3, 5]))
예제 #5
0
파일: test.py 프로젝트: alokp896/Projects
 def test8(self):
     self.assertEqual(-1, chops.chop(4, [1, 3, 5]))
예제 #6
0
파일: test.py 프로젝트: alokp896/Projects
 def test6(self):
     self.assertEqual(-1, chops.chop(0, [1, 3, 5]))
예제 #7
0
파일: test.py 프로젝트: alokp896/Projects
 def test5(self):
     self.assertEqual(2, chops.chop(5, [1, 3, 5]))
예제 #8
0
파일: test.py 프로젝트: alokp896/Projects
 def test4(self):
     self.assertEqual(1, chops.chop(3, [1, 3, 5]))
예제 #9
0
파일: test.py 프로젝트: alokp896/Projects
 def test3(self):
     self.assertEqual(0, chops.chop(1, [1, 3, 5]))
예제 #10
0
파일: test.py 프로젝트: alokp896/Projects
 def test2(self):
     self.assertEqual(0, chops.chop(1, [1]))