blob: 1efc9a566a7d5ff76888034511660ef9875ed697 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
use strict;
use warnings;
use RT::Test tests => 16;
my ( $baseurl, $m ) = RT::Test->started_ok;
RT::Test->create_tickets(
{ Queue => 'General' },
{ Subject => 'ticket foo' },
{ Subject => 'ticket bar' },
);
ok( $m->login, 'logged in' );
$m->get_ok('/Search/Simple.html');
$m->content_lacks( 'Show Results', 'no page menu' );
$m->get_ok('/Search/Simple.html?q=ticket foo');
$m->content_contains( 'Show Results', "has page menu" );
$m->title_is( 'Found 1 ticket', 'title' );
$m->content_contains( 'ticket foo', 'has ticket foo' );
# TODO more simple search tests
|