Changeset 830
- Timestamp:
- 05/26/06 17:18:54
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/t/plugins/Filter-FeedBurnerPermalink/feedburner.t
r829 r830 1 1 use strict; 2 use Test::More tests => 2;2 use Test::More tests => 1; 3 3 4 4 use Plagger; 5 5 6 Plagger->bootstrap(config => \<<'CONFIG'); 6 my $log; 7 { local $SIG{__WARN__} = sub { $log .= "@_" }; 8 Plagger->bootstrap(config => \<<'CONFIG'); 7 9 global: 8 10 log: … … 16 18 - module: Filter::FeedBurnerPermalink 17 19 CONFIG 20 } 21 22 like $log, qr/Permalink rewritten to/;
