diff options
author | ivan <ivan> | 2009-12-31 14:00:35 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-12-31 14:00:35 +0000 |
commit | 5c96d46d56f2066bb40d9a34c4db56f53f43c6f2 (patch) | |
tree | 0ef4d2c590268e347047f0f3c2f1e87ab5f9216c /rt/lib/t/regression/11-template-insert.t | |
parent | 63a268637b2d51a8766412617724b9436439deb6 (diff) |
merging 3.8.7!!!
Diffstat (limited to 'rt/lib/t/regression/11-template-insert.t')
-rw-r--r-- | rt/lib/t/regression/11-template-insert.t | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/rt/lib/t/regression/11-template-insert.t b/rt/lib/t/regression/11-template-insert.t deleted file mode 100644 index 8681ce67d..000000000 --- a/rt/lib/t/regression/11-template-insert.t +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/perl - -use warnings; -use strict; - -use Test::More tests => 7; - -use RT; -RT::LoadConfig(); -RT::Init; - - -# This tiny little test script triggers an interaction bug between DBD::Oracle 1.16, SB 1.15 and RT 3.4 - -use_ok('RT::Template'); -my $template = RT::Template->new($RT::SystemUser); - -isa_ok($template, 'RT::Template'); -my ($val,$msg) = $template->Create(Queue => 1, - Name => 'InsertTest', - Content => 'This is template content'); -ok($val,$msg); -is($template->Name, 'InsertTest'); -is($template->Content, 'This is template content', "We created the object right"); -($val, $msg) = $template->SetContent( 'This is new template content'); -ok($val,$msg); -is($template->Content, 'This is new template content', "We managed to _Set_ the content"); |