[Bps-public-commit] r17169 - in Path-Dispatcher/trunk: t
sartak at bestpractical.com
sartak at bestpractical.com
Wed Dec 10 22:30:50 EST 2008
Author: sartak
Date: Wed Dec 10 22:30:50 2008
New Revision: 17169
Modified:
Path-Dispatcher/trunk/ (props changed)
Path-Dispatcher/trunk/t/016-more-under.t
Log:
r76982 at onn: sartak | 2008-12-10 22:30:34 -0500
Test fixes, this kind of sucks
Modified: Path-Dispatcher/trunk/t/016-more-under.t
==============================================================================
--- Path-Dispatcher/trunk/t/016-more-under.t (original)
+++ Path-Dispatcher/trunk/t/016-more-under.t Wed Dec 10 22:30:50 2008
@@ -9,17 +9,17 @@
package Under::Where;
use Path::Dispatcher::Declarative -base;
- under 'ticket' => sub {
+ under 'ticket ' => sub {
on 'create' => sub { push @calls, "ticket create" };
on 'update' => sub { push @calls, "ticket update" };
};
- under 'blog' => sub {
- under 'post' => sub {
+ under 'blog ' => sub {
+ under 'post ' => sub {
on 'create' => sub { push @calls, "create blog post" };
on 'delete' => sub { push @calls, "delete blog post" };
};
- under 'comment' => sub {
+ under 'comment ' => sub {
on 'create' => sub { push @calls, "create blog comment" };
on 'delete' => sub { push @calls, "delete blog comment" };
};
More information about the Bps-public-commit
mailing list