Subject: | typo in test causes a warning |
a typo in the name of the view causes a warning when running the tests:
[...]
t/06includepath.t ......... ok
[warn] Attempted to use view 'TestApp::View::TT::AppConfig', but does
not exist
[...]
--- a/t/lib/TestApp/Controller/Root.pm
+++ b/t/lib/TestApp/Controller/Root.pm
@@ -49,7 +49,7 @@
my ($self, $c) = @_;
my $tmpl = $c->req->param('msg');
- $c->stash->{message} = $c->view('TT::AppConfig')->render($c,
\$tmpl);
+ $c->stash->{message} = $c->view('TT::Appconfig')->render($c,
\$tmpl);
$c->stash->{template} = 'test.tt';
}
Florian