diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-07-08 22:45:58 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-07-08 22:45:58 -0700 |
commit | a6fe07e49e3fc12169e801b1ed6874c3a5bd8500 (patch) | |
tree | b87a7e6f37da5c8e13eb4d4653cfc8ce9239d8f0 /rt/t/web/attachment-with-name-0.t | |
parent | e27244386c346f459d1569db26344407a0372a05 (diff) | |
parent | 005424d0c899aa899f43f583a6c74deb13ea4be1 (diff) |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Conflicts:
httemplate/misc/process/cancel_pkg.html
Diffstat (limited to 'rt/t/web/attachment-with-name-0.t')
-rw-r--r-- | rt/t/web/attachment-with-name-0.t | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/rt/t/web/attachment-with-name-0.t b/rt/t/web/attachment-with-name-0.t new file mode 100644 index 000000000..12a8dd548 --- /dev/null +++ b/rt/t/web/attachment-with-name-0.t @@ -0,0 +1,23 @@ +use strict; +use warnings; + +use RT::Test tests => 8; +my ( $baseurl, $m ) = RT::Test->started_ok; +ok $m->login, 'logged in as root'; + +use File::Spec; + +my $file = File::Spec->catfile( RT::Test->temp_directory, 0 ); +open my $fh, '>', $file or die $!; +print $fh 'foobar'; +close $fh; + +$m->get_ok( '/Ticket/Create.html?Queue=1' ); + +$m->submit_form( + form_number => 3, + fields => { Subject => 'test att 0', Content => 'test', Attach => $file }, +); +$m->content_like( qr/Ticket \d+ created/i, 'created the ticket' ); +$m->follow_link_ok( { text => 'Download 0' } ); +$m->content_contains( 'foobar', 'file content' ); |