Ark

 view release on metacpan or  search on metacpan

t/action_chain.t  view on Meta::CPAN

    sub status_remove :Chained('status_chain') :PathPart('remove') :Args(0) {
        my ($self, $c) = @_;
        $c->res->body(
            $c->stash->{user} . q['s status: "] . $c->stash->{status} . q[" will remove]
        );
    }

    package T2::Controller::Status;
    use Ark 'Controller';

    sub update :Chained('/status_chain') :PathPart :Args(0) {
        my ($self, $c) = @_;
        $c->res->body(
            $c->stash->{user} . q['s status: "] . $c->stash->{status} . q[" will update]
        );
    }
}


require Ark::Test;

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.389 second using v1.00-cache-2.02-grep-82fe00e-cpan-4673cadbf75 )