The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# $Id: /local/CPAN/Mango/t/lib/Mango/Tests/Catalyst/Admin/Roles/Path.pm 1644 2008-06-02T01:46:53.055259Z claco  $
package Mango::Tests::Catalyst::Admin::Roles::Path;
use strict;
use warnings;

BEGIN {
    use base 'Mango::Tests::Catalyst::Admin::Roles';

    use Test::More;
}

sub config {
    { 'Controller::Admin::Roles' => { path => shift->path } };
}

sub path { 'admin/groups' }

1;