[Bps-public-commit] r15452 - in Path-Dispatcher/trunk: lib/Path/Dispatcher t
sartak at bestpractical.com
sartak at bestpractical.com
Mon Aug 25 19:46:52 EDT 2008
Author: sartak
Date: Mon Aug 25 19:46:51 2008
New Revision: 15452
Modified:
Path-Dispatcher/trunk/ (props changed)
Path-Dispatcher/trunk/lib/Path/Dispatcher/Dispatch.pm
Path-Dispatcher/trunk/t/006-abort.t
Path-Dispatcher/trunk/t/011-next-rule.t
Log:
r70334 at onn: sartak | 2008-08-25 19:44:13 -0400
Did I really spell it Patch in four different places?
Modified: Path-Dispatcher/trunk/lib/Path/Dispatcher/Dispatch.pm
==============================================================================
--- Path-Dispatcher/trunk/lib/Path/Dispatcher/Dispatch.pm (original)
+++ Path-Dispatcher/trunk/lib/Path/Dispatcher/Dispatch.pm Mon Aug 25 19:46:51 2008
@@ -61,11 +61,11 @@
no warnings 'exiting';
last if $match->ends_dispatch($self);
};
- die $@ if $@ && $@ !~ /^Patch::Dispatcher next rule\n/;
+ die $@ if $@ && $@ !~ /^Path::Dispatcher next rule\n/;
}
};
- die $@ if $@ && $@ !~ /^Patch::Dispatcher abort\n/;
+ die $@ if $@ && $@ !~ /^Path::Dispatcher abort\n/;
return;
}
Modified: Path-Dispatcher/trunk/t/006-abort.t
==============================================================================
--- Path-Dispatcher/trunk/t/006-abort.t (original)
+++ Path-Dispatcher/trunk/t/006-abort.t Mon Aug 25 19:46:51 2008
@@ -13,7 +13,7 @@
regex => qr/foo/,
block => sub {
push @calls, "on";
- die "Patch::Dispatcher abort\n";
+ die "Path::Dispatcher abort\n";
},
),
);
Modified: Path-Dispatcher/trunk/t/011-next-rule.t
==============================================================================
--- Path-Dispatcher/trunk/t/011-next-rule.t (original)
+++ Path-Dispatcher/trunk/t/011-next-rule.t Mon Aug 25 19:46:51 2008
@@ -13,7 +13,7 @@
regex => qr/foo/,
block => sub {
push @calls, "on";
- die "Patch::Dispatcher next rule\n";
+ die "Path::Dispatcher next rule\n";
push @calls, "on post-die?!";
},
),
More information about the Bps-public-commit
mailing list