/usr/bin/pherkin is in libtest-bdd-cucumber-perl 0.17-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | #!/usr/bin/env perl
=head1 NAME
pherkin - Execute tests written using Test::BDD::Cucumber
=head1 VERSION
version 0.17
=head1 SYNOPSIS
pherkin
pherkin some/path/features/
=head1 DESCRIPTION
C<pherkin> accepts a single argument of a directory name, defaulting to
C<./features/> if none is specified. This directory is searched for feature
files (any file matching C<*.feature>) and step definition files (any file
matching C<*_steps.pl>). The step definitions are loaded, and then the features
executed.
Steps that pass are printed in green, those that fail in red, and those for
which there is no step definition - or that are skipped as the result of a
previous failure - as yellow.
C<pherkin> will exit with a non-zero status if (and only if) the overall result
is considered to be failing.
=head1 OPTIONS
-l, --lib Add 'lib' to @INC
-b, --blib Add 'blib/lib' and 'blib/arch' to @INC
-I [dir] Add given directory to @INC
-o, --output Output harness to use. Default to 'TermColor'. See 'Outputs'
-t, --tags @tag Run scenarios tagged with '@tag'
-t, --tags @tag1,@tag2 Run scenarios tagged with '@tag1' and '@tag2'
-t, --tags ~@tag Run scenarios tagged without '@tag'
=head1 OUTPUTS
C<pherkin> can output using any of the C<Test::BDD::Cucumber::Harness> output
modules. L<Test::BDD::Cucumber::TermColor> is the default, but
L<Test::BDD::Cucumber::TestBuilder> is also a reasonable option:
pherkin -o TermColor some/path/feature # The default
pherkin -o TestBuilder some/path/feature # Test::Builder-type text output
=head1 AUTHOR
Peter Sergeant C<pete@clueball.com>
=head1 LICENSE
Copyright 2012, Peter Sergeant; Licensed under the same terms as Perl
=cut
# See App::pherkin for documentation
use strict;
use warnings;
use FindBin::libs;
BEGIN {
if ( not -t STDOUT ) {
$ENV{'ANSI_COLORS_DISABLED'} = 1;
}
}
use App::pherkin;
my $result = App::pherkin->new()->run( @ARGV );
exit( $result->result eq 'failing' );
|