X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Fpsgi_file.t;h=7327d4aab333234f0d8c71dbbaeeae0ce256777d;hb=cfb8879d62b804cb574bf5608dd41cfb87d3559a;hp=8fd6eada95641e4adf97defedf41ca25b831b934;hpb=c234ca5552150323a80cc138ef4d39d353534258;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/psgi_file.t b/t/aggregate/psgi_file.t index 8fd6ead..7327d4a 100644 --- a/t/aggregate/psgi_file.t +++ b/t/aggregate/psgi_file.t @@ -28,7 +28,7 @@ system($^X, '-I', "$FindBin::Bin/../lib", '-c', $path) #my $psgi_ref = require $path; # otherwise this test passes! # I don't exactly know why that is yet, however, to be safe for future, that -# is why this test writes out it's own .psgi file in a temp directory - so that that +# is why this test writes out its own .psgi file in a temp directory - so that that # path has never been require'd before, and will never be require'd again.. local TestApp->config->{home} = $home; @@ -37,10 +37,10 @@ my $failed = 0; eval { # Catch infinite recursion (or anything else) local $SIG{__WARN__} = sub { warn(@_); $failed = 1; die; }; - TestApp->setup_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;