You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by pa...@apache.org on 2007/11/25 07:39:11 UTC

svn commit: r597958 - /spamassassin/trunk/t/uri.t

Author: parker
Date: Sat Nov 24 22:39:10 2007
New Revision: 597958

URL: http://svn.apache.org/viewvc?rev=597958&view=rev
Log:
Couple of found uri tests, not sure where they came from or how long they've
been in my tree but figured I'd commit them.

Modified:
    spamassassin/trunk/t/uri.t

Modified: spamassassin/trunk/t/uri.t
URL: http://svn.apache.org/viewvc/spamassassin/trunk/t/uri.t?rev=597958&r1=597957&r2=597958&view=diff
==============================================================================
--- spamassassin/trunk/t/uri.t (original)
+++ spamassassin/trunk/t/uri.t Sat Nov 24 22:39:10 2007
@@ -23,7 +23,7 @@
 use Mail::SpamAssassin::HTML;
 use Mail::SpamAssassin::Util;
 
-plan tests => 89;
+plan tests => 91;
 
 ##############################################
 
@@ -242,6 +242,19 @@
    'http://127.0.0.1',
    ]));
 
+ok(try_canon([
+   'http://0xcc.0xf.0x50.0x89/',
+   ], [
+   'http://0xcc.0xf.0x50.0x89/',
+   'http://204.15.80.137/',
+       ]));
+
+ok(try_canon([
+   'http://0xcc.0x50.0x89.0xf/',
+   ], [
+   'http://0xcc.0x50.0x89.0xf/',
+   'http://204.80.137.15/',
+       ]));
 
 ##############################################