Subject: | DOES method for autodie::skip not available until perl 5.10 |
The new autodie::skip thing is great, but you're checking with DOES.
That will fail with method not found on perl < 5.10 unless the class
implements it itself.
You should check $package->can("DOES") and use that or else fall back to
isa.