diff options
author | ivan <ivan> | 2010-05-18 18:49:59 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-05-18 18:49:59 +0000 |
commit | e70abd21bab68b23488f7ef1ee2e693a3b365691 (patch) | |
tree | 75986ffa9ba6ab4f961f9033468a1344e1653408 /rt/t/api/emailparser.t | |
parent | b4b0c7e72d7eaee2fbfc7022022c9698323203dd (diff) |
import rt 3.8.8
Diffstat (limited to 'rt/t/api/emailparser.t')
-rw-r--r-- | rt/t/api/emailparser.t | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/rt/t/api/emailparser.t b/rt/t/api/emailparser.t index 4807138cc..940c26fde 100644 --- a/rt/t/api/emailparser.t +++ b/rt/t/api/emailparser.t @@ -1,32 +1,19 @@ use strict; use warnings; -use RT; + use RT::Test tests => 4; +RT->Config->Set( RTAddressRegexp => qr/^rt\@example.com$/i ); -{ ok(require RT::EmailParser); - -} - -{ - is(RT::EmailParser::IsRTAddress("","rt\@example.com"),1, "Regexp matched rt address" ); is(RT::EmailParser::IsRTAddress("","frt\@example.com"),undef, "Regexp didn't match non-rt address" ); - -} - -{ - my @before = ("rt\@example.com", "frt\@example.com"); my @after = ("frt\@example.com"); ok(eq_array(RT::EmailParser::CullRTAddresses("",@before),@after), "CullRTAddresses only culls RT addresses"); - -} - 1; |