Mercurial > pub > Impl
view _test/Test/Web/AutoLocator.pm @ 287:2d253e6e4a88
*TTView refactoring
author | cin |
---|---|
date | Tue, 19 Feb 2013 03:05:10 +0400 |
parents | 5c82eec23bb6 |
children |
line wrap: on
line source
package Test::Web::AutoLocator; use strict; use IMPL::Test qw(test assert); use URI(); use IMPL::declare { require => { 'Locator' => 'IMPL::Web::AutoLocator' }, base => { 'IMPL::Test::Unit' => '@_' } }; test TestCreation => sub { my $location = Locator->new(base => 'http://bugs.company.org', view => "cgi"); my $url = $location->show_bug({id => 100}); assert( $url->url eq "http://bugs.company.org/show_bug.cgi?id=100", $url->url ); $url = $location->SetView(undef)->help->CreateBug->HowTo; assert( $url->url eq "http://bugs.company.org/help/CreateBug/HowTo", $url->url ); }; 1;