X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate%2Fpsgi_file.t;h=5b62cf2139f0569a06f5bd3d641ef6025d13775b;hp=c7a0e36fbb104bf34b0d34eda184ed20a96d5419;hb=8f076801b5c41543fdc20859452ed2cea1e1f82f;hpb=aceee8b5c5fa1198e7c77652ba58049d4582b8d8 diff --git a/t/aggregate/psgi_file.t b/t/aggregate/psgi_file.t index c7a0e36..5b62cf2 100644 --- a/t/aggregate/psgi_file.t +++ b/t/aggregate/psgi_file.t @@ -16,7 +16,7 @@ use strict; use warnings; use TestApp; -TestApp->raw_psgi_app; +TestApp->psgi_app; }; close($psgi); # Check we wrote out something that compiles @@ -37,10 +37,10 @@ my $failed = 0; eval { # Catch infinite recursion (or anything else) local $SIG{__WARN__} = sub { warn(@_); $failed = 1; die; }; - TestApp->psgi_app; + TestApp->_finalized_psgi_app; }; ok(!$@, 'No exception') or diag $@; -ok(!$failed, 'TestApp->setup_psgi_app works'); +ok(!$failed, 'TestApp->_finalized_psgi_app works'); done_testing;