예제 #1
0
파일: test_day5.py 프로젝트: crerwin/advent
 def test_isnice_part2_case_2(self):
     self.assertEquals(day5.isnice("xxyxx", "part2"), True)
예제 #2
0
파일: test_day5.py 프로젝트: crerwin/advent
 def test_isnice_part2_case_3(self):
     self.assertEquals(day5.isnice("uurcxstgmygtbstg", "part2"), False)
예제 #3
0
파일: test_day5.py 프로젝트: crerwin/advent
 def test_isnice_case_5(self):
     self.assertEquals(day5.isnice("dvszwmarrgswjxmb"), False)
예제 #4
0
파일: test_day5.py 프로젝트: crerwin/advent
 def test_isnice_part2_case_1(self):
     self.assertEquals(day5.isnice("qjhvhtzxzqqjkmpb", "part2"), True)
예제 #5
0
파일: test_day5.py 프로젝트: crerwin/advent
 def test_isnice_case_4(self):
     self.assertEquals(day5.isnice("haegwjzuvuyypxyu"), False)
예제 #6
0
파일: test_day5.py 프로젝트: crerwin/advent
 def test_isnice_case_3(self):
     self.assertEquals(day5.isnice("jchzalrnumimnmhp"), False)
예제 #7
0
파일: test_day5.py 프로젝트: crerwin/advent
 def test_isnice_case_2(self):
     self.assertEquals(day5.isnice("ugknbfddgicrmopn"), True)
예제 #8
0
파일: test_day5.py 프로젝트: crerwin/advent
 def test_isnice_case_1(self):
     self.assertEquals(day5.isnice("aaa"), True)
예제 #9
0
파일: test_day5.py 프로젝트: crerwin/advent
 def test_isnice_part2_case_4(self):
     self.assertEquals(day5.isnice("ieodomkazucvgmuy", "part2"), False)