示例#1
0
 def test_example_a(self, test_input, expected):
     result = day15.part_a(test_input)
     self.assertEqual(result, expected)
示例#2
0
 def test_answer_part_a(self):
     result = day15.part_a(util.get_file_contents('day15.txt'))
     self.assertEqual(result, '567')
示例#3
0
 def test_answer_part_a(self):  # noqa D102
     result = day15.part_a(helpers.get_file_contents('day15.txt'))
     self.assertEqual(result, '191575')