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