Subject: | Tests failing when ffmpeg not installed |
Your tests fail when the user has not installed ffmpeg. This can be
remedied as described in http://wiki.cpantesters.org/wiki/CPANAuthorNotes.
See the headline
"How can I stop getting FAIL reports for missing libraries or other
non-Perl dependencies?"
Maybe something like this would then be good enough:
if (0 != system "ffmpeg -version"){ warn "...."; exit 0; }
Thanks!