adventofcode/2020/04/tests.t

12 lines
143 B
Perl
Raw Permalink Normal View History

2021-12-05 16:51:21 +00:00
use Test::More;
BEGIN { push @INC, '.'; }
use part1;
is valid_passports('test') => 2;
is valid_passports('input') => 210;
done_testing();