# $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;