1
0
Fork 0
advent-of-code/2021/test/advent_of_code/day01/part_2_test.exs
Sloane Perrault bddcdc82c8 solve: day 1
2022-09-21 09:19:53 -04:00

21 lines
279 B
Elixir

defmodule AdventOfCode.Day01.Part2Test do
use AdventOfCode.PuzzleCase, module: AdventOfCode.Day01.Part2
test "returns :ok" do
input = ~S"""
199
200
208
210
200
207
240
269
260
263
"""
assert_solution(input, 5)
end
end