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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
package Test::BDD::Cucumber;
$Test::BDD::Cucumber::VERSION = '0.75';
use strict;
use warnings;
1;
# CODE ENDS
=head1 NAME
Test::BDD::Cucumber - Feature-complete Cucumber-style testing in Perl
=head1 VERSION
version 0.75
=head1 SYNOPSIS
# Driving tests using the 'pherkin' binary that comes with the distribution
$ pherkin -l -b t/
# Or choose a subset of tests to be run by selecting all scenarios tagged 'slow'
$ pherkin -l -b --tags @slow t/
# Or all those /not/ tagged 'slow'
$ pherkin -l -b --tags ~@slow
# Driving tests using 'prove' integration
$ prove --source Feature --ext=.feature t/
# Driving parallel tests using 'prove'
$ prove --source Feature -j 9 --ext=.feature t/
=head1 DESCRIPTION
Cucumber for Perl, integrated with L<Test2>, L<Test::More> and L<prove>.
The implementation supports the following Gherkin keywords in feature files:
C<Feature>, C<Scenario>, C<Scenario Outline>, C<Examples>, C<Given>, C<When>,
C<Then>, C<And> and C<But>. Additionally, C<Scenario> can be used as a synonym
for C<Scenario Outline> (with C<Examples>). This best maps to
L<Gherkin version 6.0.13|https://github.com/cucumber/cucumber/blob/master/gherkin/CHANGELOG.md#6013---2018-09-25>,
but without support for its new C<Rule> and C<Example> keywords.
This implementation supports the same languages as Gherkin 15.0.0 - that is, it
supports exactly the same translated keywords.
Behaviour of this module is similar to that, but sometimes different from
the I<real> Cucumber, the plan is to move use the same parser and behaviour.
=head1 GETTING STARTED
This module comes with a few introductory tutorials.
=over 4
=item * L<A Cucumber feature writing tutorial|Test::BDD::Cucumber::Manual::Tutorial>
for those new to Cucumber and BDD testing
=item * L<A Step writing tutorial|Test::BDD::Cucumber::Manual::Steps>
to get you started writing the code run for each C<Given>, C<Then>, C<When> step
=item * L<A guide on integrating with your test suite|Test::BDD::Cucumber::Manual::Integration>
=item * L<An architecture overview|Test::BDD::Cucumber::Manual::Architecture>
for those who want to extend or hook into feature file execution
=item * Documentation of the command-line tool L<App::pherkin>
=back
=begin html
If you have problems getting started, you can talk to the author(s) here: <a
href="https://gitter.im/pjlsergeant/test-bdd-cucumber-perl"><img
src="https://badges.gitter.im/pjlsergeant/test-bdd-cucumber-perl.svg"
alt="Chat on Gitter"
></a>
=end html
=head1 BUGS AND LIMITATIONS
For current bugs, check the issue tracer at GitHub:
L<https://github.com/pherkin/test-bdd-cucumber-perl/issues>
One thing need specific mentioning:
=over 4
=item * Due to the use of its own parser, differences probably exist
in the interpretation of feature files when comparing to Cucumber.
Also L<see the issue|https://github.com/pherkin/test-bdd-cucumber-perl/issues/73> for
tracking this topic.
=back
=head1 PROJECT RESOURCES
=over 4
=item * Source code repository at L<https://github.com/pherkin/test-bdd-cucumber-perl>
=item * Bug tracker at L<https://github.com/pherkin/test-bdd-cucumber-perl/issues>
=item * Mailing list at L<mailto:perl-pherkin@googlegroups.com>
=item * Chat (Gitter) at L<https://gitter.im/pjlsergeant/test-bdd-cucumber-perl>
=item * Chat (IRC) at L<irc://irc.freenode.net/#perl>
=item * Website at L<https://pherkin.pm>
=back
=head1 SEE ALSO
L<Gherkin> - A Gherkin parser and compiler
=head1 AUTHORS
Peter Sergeant C<pete@clueball.com>
Erik Huelsmann C<ehuels@gmail.com>
Ben Rodgers C<ben@bdr.org>
=head1 LICENSE
Copyright 2019-2020, Erik Huelsmann
Copyright 2011-2019, Peter Sergeant; Licensed under the same terms as Perl
=cut
|