X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Funit_utils_prefix.t;fp=t%2Funit_utils_prefix.t;h=63429b7256ca38150e56d037fd892d80b6681098;hb=0ef447d8c6880fa4dda2648aa19a005245ef036a;hp=0000000000000000000000000000000000000000;hpb=aae8d41820da206b22c27e626112f31e1e5fcbf5;p=catagits%2FCatalyst-Runtime.git diff --git a/t/unit_utils_prefix.t b/t/unit_utils_prefix.t new file mode 100644 index 0000000..63429b7 --- /dev/null +++ b/t/unit_utils_prefix.t @@ -0,0 +1,26 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More tests => 7; + +use lib "t/lib"; + +BEGIN { use_ok("Catalyst::Utils") }; + +is( Catalyst::Utils::class2prefix('MyApp::V::Foo::Bar'), 'foo/bar', 'class2prefix works with M/V/C' ); + +is( Catalyst::Utils::class2prefix('MyApp::Controller::Foo::Bar'), 'foo/bar', 'class2prefix works with Model/View/Controller' ); + +is( Catalyst::Utils::class2prefix('MyApp::Controller::Foo::View::Bar'), 'foo/view/bar', 'class2prefix works with tricky components' ); + +is( Catalyst::Utils::appprefix('MyApp::Foo'), 'myapp_foo', 'appprefix works' ); + +is( Catalyst::Utils::class2appclass('MyApp::Foo::Controller::Bar::View::Baz'), 'MyApp::Foo', 'class2appclass works' ); + +is( Catalyst::Utils::class2classprefix('MyApp::Foo::Controller::Bar::View::Baz'), 'MyApp::Foo::Controller', 'class2classprefix works' ); + +is( Catalyst::Utils::class2classsuffix('MyApp::Foo::Controller::Bar::View::Baz'), 'Controller::Bar::View::Baz', 'class2classsuffix works' ); + +is( Catalyst::Utils::class2env('MyApp::Foo'), 'MYAPP_FOO', 'class2env works' );