Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

test::bdd::cucumber::harness::data(3pm) [debian man page]

Test::BDD::Cucumber::Harness::Data(3pm) 		User Contributed Perl Documentation		   Test::BDD::Cucumber::Harness::Data(3pm)

NAME
Test::BDD::Cucumber::Harness::Data - Builds up an internal data representation of test passes / failures VERSION
version 0.11 DESCRIPTION
A Test::BDD::Cucumber::Harness subclass which collates test data ATTRIBUTES
features An array-ref in which we store all the features executed, and completed. Until "feature_done" is called, it won't be in here. current_feature current_scenario current_step The current feature/step/scenario for which we've had the starting method, but not the "_done" method. feature feature_done Feature hashref looks like: { object => Test::BDD::Cucumber::Model::Feature object scenarios => [] } scenario scenario_done Scenario hashref looks like: { object => Test::BDD::Cucumber::Model::Scenario object dataset => Data hash the scenario was invoked with steps => [], } step step_done Step hashref looks like: { context => Test::BDD::Cucumber::StepContext object result => Test::BDD::Cucumber::Model::Result object (after step_done) } feature_status scenario_status step_status Accepting one of the data-hashes above, returns a Test::BDD::Cucumber::Model::Result object representing it. If it's a Feature or a Scenario, then it returns one representing all the child objects. find_scenario_step_by_name Given a Scenario and a string, searches through the steps for it and returns the data-hash where the Step Object's "<-"text>> matches the string. AUTHOR
Peter Sergeant "pete@clueball.com" LICENSE
Copyright 2011, Peter Sergeant; Licensed under the same terms as Perl perl v5.14.2 2012-05-20 Test::BDD::Cucumber::Harness::Data(3pm)

Check Out this Related Man Page

Test::BDD::Cucumber(3pm)				User Contributed Perl Documentation				  Test::BDD::Cucumber(3pm)

NAME
Test::BDD::Cucumber - Feature-complete Cucumber-style testing in Perl VERSION
version 0.11 DESCRIPTION
A sane and complete Cucumber implementation in Perl QUICK LINKS
Cucumber on Perl on MetaCPAN <https://metacpan.org/release/Test-BDD-Cucumber> WARNING
This is beta software, at best. The interface is unlikely to undergo major incompatible changes, but it's certainly possible. Do have a read of the Bugs and Missing section below so you're not surprised when these things don't work. In almost all cases, where the behaviour of this module is different from the real Cucumber, the plan is to move it to be more similar to that. The idea is that the first 1.0 release will be the first production release and before that, you're on your own. There are many things still to add, but I'm using it to do Real Things already. NEXT STEPS
If you are completely new to Cucumber, you'd get a pretty overview from reading our short and crunchy Tutorial. If you already understand Cucumber, and just want to get started then you should read the Step-writing quick-start guide, the documentation for our command-line tool App::pherkin, and How to integrate with Test::Builder. If you want to extend or integrated Test::BDD::Cucumber then you'd probably be more interested in our Architecture overview. TEN SECOND GUIDE TO USING THIS IN YOUR CI ENVIRONMENT
Don't use the command-line tool, App::pherkin. Instead, look at the How to integrate with Test::Builder document. BUGS, MISSING, AND LIMITATIONS The following things do not work in this release, although support is planned in the very near future: o Localization o Step Argument Transforms o Quoting in tables is broken o Placeholders in pystrings is broken o Explicit Step Outline notation doesn't work (although step outlines are explicitly supported) o Unicode support is probably a bit ropey o Pherkin isn't really fit for purpose yet CODE
On Github, of course: https://github.com/sheriff/test-bdd-cucumber-perl <https://github.com/sheriff/test-bdd-cucumber-perl>. AUTHOR
Peter Sergeant "pete@clueball.com" LICENSE
Copyright 2011, Peter Sergeant; Licensed under the same terms as Perl perl v5.14.2 2012-05-20 Test::BDD::Cucumber(3pm)
Man Page