Tweaks to trials.mas: hides breeding program table in non-accession stocks and rename...
[sgn.git] / t / legacy / integration / search_glossary.t
blobf7284749d674cf07694e1d5bbd8afccf604d97da
1 =head1 NAME
3 t/integration/search.t - integration tests for generic search URLs
5 =head1 DESCRIPTION
7 Tests for search URLs
9 =head1 SYNOPSIS
12 =head1 AUTHORS
14 Jonathan "Duke" Leto
16 =cut
18 use Modern::Perl;
19 use Test::Most;
21 BEGIN { $ENV{SGN_SKIP_CGI} = 1 }
22 use lib 't/lib';
23 use SGN::Test::Data qw/ create_test /;
24 use SGN::Test::WWW::Mechanize;
26 my $mech = SGN::Test::WWW::Mechanize->new;
28 $mech->get_ok("/search/glossarysearch.pl?getTerm=bac");
29 $mech->content_contains('Bacterial artificial chromosome');
31 done_testing;