Created .proverc to make sure ./lib is included in @INC as a default
After installing the dependencies for the project, the tests failed when I ran them because they couldn't find JSON::Validator::OpenAPI::Mojolicious. Instead of dealing with this in my own environment, I think it makes life easier to keep a .proverc file. When I added this, I could run the tests immediately.
Created
.proverc
to make sure./lib
is included in@INC
as a defaultAfter installing the dependencies for the project, the tests failed when I ran them because they couldn't find
JSON::Validator::OpenAPI::Mojolicious
. Instead of dealing with this in my own environment, I think it makes life easier to keep a.proverc
file. When I added this, I could run the tests immediately.