11 lines
210 B
Elixir
11 lines
210 B
Elixir
|
defmodule AdventOfCode.Day01.Part2Test do
|
||
|
use AdventOfCode.PuzzleCase, module: AdventOfCode.Day01.Part2
|
||
|
|
||
|
test "returns :ok" do
|
||
|
input = ~S"""
|
||
|
input
|
||
|
"""
|
||
|
|
||
|
assert_solution(input, "ok")
|
||
|
end
|
||
|
end
|