23 lines
550 B
Perl
23 lines
550 B
Perl
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
use Test::More;
|
|
use DDG::Test::Goodie;
|
|
|
|
zci answer_type => "<: $lia_name :>";
|
|
zci is_cached => 1;
|
|
|
|
ddg_goodie_test(
|
|
[qw( DDG::Goodie::<: $ia_package_name :> )],
|
|
# At a minimum, be sure to include tests for all:
|
|
# - primary_example_queries
|
|
# - secondary_example_queries
|
|
'example query' => test_zci('query'),
|
|
# Try to include some examples of queries on which it might
|
|
# appear that your answer will trigger, but does not.
|
|
'bad example query' => undef,
|
|
);
|
|
|
|
done_testing;
|