adventofcode/2020/04/tests.t
2021-12-05 11:51:21 -05:00

12 lines
143 B
Perl

use Test::More;
BEGIN { push @INC, '.'; }
use part1;
is valid_passports('test') => 2;
is valid_passports('input') => 210;
done_testing();