~ubuntu-branches/ubuntu/lucid/spamassassin/lucid-proposed

« back to all changes in this revision

Viewing changes to t/regexp_valid.t

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville, Ubuntu Merge-o-Matic, Laurent Bigonville
  • Date: 2006-07-31 15:40:08 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060731154008-j37ulp5pgfkddegw
Tags: 3.1.3-1ubuntu1
[ Ubuntu Merge-o-Matic ]
* Merge from debian unstable.

[ Laurent Bigonville ]
* fix debian/control.
* drop debian/patches/40_fix_dns_issue.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
use Test;
21
21
 
22
22
# settings
23
 
plan tests => 25;
 
23
plan tests => 24;
24
24
 
25
25
# initialize SpamAssassin
26
26
use Mail::SpamAssassin;
88
88
 
89
89
ok badone '/foo(?{1})bar/';
90
90
ok badone 'm!foo(?{1})bar!';
91
 
ok badone '/test//';
 
91
# ok badone '/test//';          # removed for bug 4700
92
92
ok goodone '.*';
93
93
ok goodone 'm*<a[^<]{0,60} onMouseMove=(?:3D)?"window.status=(?:3D)?\'https?://*';
94
94