Subject: | relies on . being in @INC |
The test t/01-basic_attributes.t loads t::odea::BasicAttributes, which is using a path relative to the current directory. In future versions of perl, the current directory will not be in @INC, so loading like that will fail.
There will be workarounds in place so this won't break immediately, but it should still be changed. The easiest solution would be to add
use lib '.';
to your test script.