adventofcode/2017/day3/day3.t

11 lines
117 B
Perl
Raw Normal View History

2017-12-03 17:34:10 +00:00
use Test::More;
use day3;
is path(12) => 3;
is path(23) => 2;
is path(1024) => 31;
is path(1) => 0;
done_testing;