# Before `make install' is performed this script should be runnable with # `make test'. After `make install' it should work as `perl IPTables-libiptc.t' ######################### # change 'tests => 2' to 'tests => last_test_to_print'; use Test::More tests => 2; BEGIN { use_ok('IPTables::libiptc') }; my $fail = 0; foreach my $constname (qw( IPT_MIN_ALIGN)) { next if (eval "my \$a = $constname; 1"); if ($@ =~ /^Your vendor has not defined IPTables::libiptc macro $constname/) { print "# pass: $@"; } else { print "# fail: $@"; $fail = 1; } } ok( $fail == 0 , 'Constants' ); ######################### # Insert your test code below, the Test::More module is use()ed here so read # its man page ( perldoc Test::More ) for help writing this test script.