1
0
Fork 0
advent-of-code/2021/test/advent_of_code/day01/part_1_test.exs
Sloane Perrault 766ae24cb2 day 1 cleanup
2022-09-21 09:19:53 -04:00

20 lines
291 B
Elixir

defmodule AdventOfCode.Day01.Part1Test do
use AdventOfCode.PuzzleCase, module: AdventOfCode.Day01.Part1
test "solves for a small input" do
input = ~S"""
199
200
208
210
200
207
240
269
260
263
"""
assert_solution(input, 7)
end
end