Skip Menu |

This queue is for tickets about the Catalyst-Runtime CPAN distribution.

Report information
The Basics
Id: 95361
Status: resolved
Priority: 0/
Queue: Catalyst-Runtime

People
Owner: Nobody in particular
Requestors: DAMI [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 5.90063
Fixed in: (no value)



Subject: t/head_middleware.t : setup too early
looks like line 28 "MyApp->setup" in t/head_middleware.t shouldn't be there. It fails because at this point 'MyApp/Controller/Root.pm' is not defined in %INC. The second setup that occurs at line 33 is OK.
The %INC population was fixed by commit 09b86ef[1] (fix loading inline packages in tests), so now the call succeeds. Instead of removing the first call, I've removed the second, and moved the test to the first, in commit be7d405[2]. [1]: https://github.com/perl-catalyst/catalyst-runtime/commit/09b86ef3e370ed90851bdf8107bdbbb6532a87c8 [2]: https://github.com/perl-catalyst/catalyst-runtime/commit/be7d405452053e8df328d5c97ccd63ba4b21683e
this looks fixed to me