summaryrefslogtreecommitdiff
path: root/rt/t/web/ticket_update_without_content.t
diff options
context:
space:
mode:
Diffstat (limited to 'rt/t/web/ticket_update_without_content.t')
-rw-r--r--rt/t/web/ticket_update_without_content.t52
1 files changed, 0 insertions, 52 deletions
diff --git a/rt/t/web/ticket_update_without_content.t b/rt/t/web/ticket_update_without_content.t
deleted file mode 100644
index 595cb74e9..000000000
--- a/rt/t/web/ticket_update_without_content.t
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-
-use RT::Test tests => 10;
-my ( $url, $m ) = RT::Test->started_ok;
-
-# merged tickets still show up in search
-my $ticket = RT::Ticket->new($RT::SystemUser);
-my ( $ret, $msg ) = $ticket->Create(
- Subject => 'base ticket' . $$,
- Queue => 'general',
- Owner => 'root',
- Requestor => 'root@localhost',
- MIMEObj => MIME::Entity->build(
- From => 'root@localhost',
- To => 'rt@localhost',
- Subject => 'base ticket' . $$,
- Data => "",
- ),
-);
-ok( $ret, "ticket created: $msg" );
-
-ok( $m->login, 'logged in' );
-
-$m->get_ok( $url . "/Ticket/ModifyAll.html?id=" . $ticket->id );
-
-$m->submit_form(
- form_number => 3,
- fields => { Priority => '1', }
-);
-
-$m->content_like(qr/priority changed/i);
-$m->content_unlike(qr/message recorded/i);
-
-my $root = RT::User->new( $RT::SystemUser );
-$root->Load('root');
-( $ret, $msg ) = $root->SetSignature(<<EOF);
-best wishes
-foo
-EOF
-
-ok( $ret, $msg );
-
-$m->get_ok( $url . "/Ticket/ModifyAll.html?id=" . $ticket->id );
-
-$m->submit_form(
- form_number => 3,
- fields => { Priority => '2', }
-);
-$m->content_like(qr/priority changed/i);
-$m->content_unlike(qr/message recorded/i);