예제 #1
0
 def test_day1_1_8(self):
     self.assertEqual(day1.calcFuel(100756), 33583)
예제 #2
0
 def test_day1_1_7(self):
     self.assertEqual(day1.calcFuel(1969), 654)
예제 #3
0
def test_fuelcalc(moduleweight, fuel):
    assert calcFuel(moduleweight) == fuel, "failed"
예제 #4
0
 def test_day1_1_6(self):
     self.assertEqual(day1.calcFuel(14), 2)
예제 #5
0
def test_complexfuelcalc(moduleweight, fuel):
    assert calcFuel(moduleweight, 1) == fuel, "failed"