adventofcode/2020/04/tests.t

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();