1
0
Fork 0
advent-of-code/2021/test/advent_of_code/day0/part_0_test.exs

8 lines
243 B
Elixir
Raw Normal View History

defmodule AdventOfCode.Day0.Part0Test do
use AdventOfCode.PuzzleCase, module: AdventOfCode.Day0.Part0
test "returns the answer to live the universe and everything" do
assert_solution "life the universe and everything", "42"
end
end