NAME

Test::Cukes - A BBD test tool inspired by Cucumber

SYNOPSIS

Write your test program like this:

# test.pl
use Test::More;
use Test::Cukes;

feature(<<TEXT);
Feature: writing behavior tests
  In order to make me happy
  As a test maniac
  I want to write behavior tests

  Scenario: Hello World
    Given the test program is running
    When it reaches this step
    Then it should pass
TEXT

Given qr/the test program is running/, sub {
    pass("running");
}

When qr/it reaches this step/, sub {
    pass("reaches");
}

Then qr/it should pass/, sub {
    pass("passes");
}

plan tests => 3;
runtests;

When it runs, it looks like this:

> perl test.pl
1..3
# Given the test program is running
ok 1 - running
# When it reaches this step
ok 2 - reaches
# Then it should pass
ok 3 - passes

DESCRIPTION

Test::Cukes is a testing tool inspired by Cucumber (http://cukes.info). It lets your write your module test with scenarios. It is supposed to be used with Test::More or other family of Test::* modules. It uses Test::More::note function internally to print messages.

This module implements the Given-When-Then clause only in English. To uses it in the test programs, you feed your feature text into feature function, defines your step handlers, and then run all the tests by calling runtests.

For more info about how to define feature and scenarios, please read the documents from http://cukes.info.

AUTHOR

Kang-min Liu <gugod@gugod.org>

SEE ALSO

The official Cucumber web-page, http://cukes.info/.

cucumber.pl, http://search.cpan.org/dist/cucumber/, another Perl implementation of Cucumber tool.

LICENSE AND COPYRIGHT

Copyright (c) 2009, Kang-min Liu <gugod@gugod.org>.

This is free software, licensed under:

The MIT (X11) License

DISCLAIMER OF WARRANTY

BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.