File: prove

package info (click to toggle)
libpandoc-wrapper-perl 0.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 304 kB
  • sloc: perl: 589; makefile: 5; sh: 1
file content (14 lines) | stat: -rwxr-xr-x 292 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env perl
use strict;

foreach (glob('xt/bin/*')) {
    next if $_ !~ qr{^xt/bin/pandoc-(\d(\.\d+)*)$};
    system('prove', "-Pandoc=$_", @ARGV);
}

=head1 DESCRIPTION

This script runs L<prove> with each pandoc executable found in C<xt/bin>
via L<App::Prove::Plugin::andoc>.

=cut