[libtest-bdd-cucumber-perl] branch master updated (5f1bb2b -> 99e2982)

Intrigeri intrigeri at moszumanska.debian.org
Wed Aug 27 19:28:40 UTC 2014


This is an automated email from the git hooks/post-receive script.

intrigeri pushed a change to branch master
in repository libtest-bdd-cucumber-perl.

      from  5f1bb2b   update changelog
      adds  8c268ca   [lib] removing exec bit on StepFile.pm
      adds  3c6da8c   Merge pull request #44 from paultcochrane/ptc_exec_bit_fix
      adds  b0a7fb4   Add JSON output support
      adds  ea913ea   Fix wrongly calculated step duration
      adds  bfee9d8   Force change id to text value in Cucumber JSON output
      adds  e19903b   Report result "undefined" as "skipped" in JSON
      adds  949b214   Set JSON arguments (utf8=>1, pretty=>1) by default
      adds  8c09a24   Write tests for Test::BDD::Cucumber::Harness::JSON
      adds  853becd   Fix building of description in Harness JSON
      adds  1233f34   Merge pull request #38 from tomas-zemres/master
      adds  6a8c9c5   Adding --help command line option to `pherkin`
      adds  6f1fd50   Merge pull request #42 from paultcochrane/ptc_add_help_option
      adds  d18a852   Cleanup post JSON harness merge
      adds  4aa81a5   Perltidy
      adds  a0663c8   The JSON formatter tests assumed Unix filenames which failed on Win32
      adds  56cdec0   0.28 release
      adds  e1e81c5   Remove FindBin::libs, fix the unterminated string bug
      adds  ff15f9e   Another hamfisted attempt to fix Win32
      adds  e79b2cb   0.29
      adds  77e81ec   Imported Upstream version 0.29
       new  408dbe8   Merge tag 'upstream/0.29'
       new  2570691   Remove {build,runtime}-dependency on libfindbin-libs-perl.
       new  99e2982   libtest-bdd-cucumber-perl (0.29-1)

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGES                                            |  10 +
 MANIFEST                                           |   6 +-
 META.yml                                           |   8 +-
 Makefile.PL                                        |  14 +-
 README                                             |   4 +-
 TODO                                               |   5 +-
 bin/pherkin                                        |   4 +-
 debian/changelog                                   |  11 +-
 debian/control                                     |   2 -
 dist.ini                                           |   4 +-
 .../features/step_definitions/calculator_steps.pl  |  52 ++--
 examples/calculator/lib/Calculator.pm              |  39 +--
 .../features/step_definitions/basic_steps.pl       |   4 +-
 .../features/step_definitions/calculator_steps.pl  |  46 +--
 examples/tagged-digest/features/basic.feature      |   1 +
 .../features/step_definitions/basic_steps.pl       |   4 +-
 lib/App/pherkin.pm                                 | 118 ++++----
 lib/Test/BDD/Cucumber.pm                           |   4 +-
 lib/Test/BDD/Cucumber/Errors.pm                    |  50 ++--
 lib/Test/BDD/Cucumber/Executor.pm                  | 322 +++++++++++----------
 lib/Test/BDD/Cucumber/Harness.pm                   |  14 +-
 lib/Test/BDD/Cucumber/Harness/Data.pm              |  92 +++---
 lib/Test/BDD/Cucumber/Harness/JSON.pm              | 173 +++++++++++
 lib/Test/BDD/Cucumber/Harness/TermColor.pm         | 151 ++++++----
 lib/Test/BDD/Cucumber/Harness/TestBuilder.pm       |  57 ++--
 lib/Test/BDD/Cucumber/I18N/Data.pm                 |   4 +-
 lib/Test/BDD/Cucumber/I18n.pm                      |   7 +-
 lib/Test/BDD/Cucumber/Loader.pm                    |  30 +-
 lib/Test/BDD/Cucumber/Manual/Architecture.pod      |   4 +-
 lib/Test/BDD/Cucumber/Manual/Integration.pod       |   5 +-
 lib/Test/BDD/Cucumber/Manual/Steps.pod             |   4 +-
 lib/Test/BDD/Cucumber/Manual/Tutorial.pod          |   4 +-
 lib/Test/BDD/Cucumber/Model/Document.pm            |  43 +--
 lib/Test/BDD/Cucumber/Model/Feature.pm             |  36 ++-
 lib/Test/BDD/Cucumber/Model/Line.pm                |  43 +--
 lib/Test/BDD/Cucumber/Model/Result.pm              |  58 ++--
 lib/Test/BDD/Cucumber/Model/Scenario.pm            |  18 +-
 lib/Test/BDD/Cucumber/Model/Step.pm                |  13 +-
 lib/Test/BDD/Cucumber/Model/TagSpec.pm             |  94 +++---
 lib/Test/BDD/Cucumber/Parser.pm                    | 225 +++++++-------
 lib/Test/BDD/Cucumber/StepContext.pm               | 119 ++++----
 lib/Test/BDD/Cucumber/StepFile.pm                  |  59 ++--
 lib/Test/BDD/Cucumber/Util.pm                      |  16 +-
 script/make_corpus.pl                              |   6 +-
 t/210_background_sections.t                        |  24 +-
 t/220_tag_parsing.t                                |  48 +--
 t/230_tag_matching.t                               |  78 ++---
 t/260_match_matcher.t                              |  22 +-
 t/310_auto_corpus.t                                |  24 +-
 t/400_app_pherkin_harnesses.t                      |  17 +-
 t/600_harness_json_output.t                        | 192 ++++++++++++
 t/700_tag_processing.t                             |  31 +-
 t/800_regressions_010_too_few_features.t           |  16 +-
 t/800_regressions_020_term_color_skipped_steps.t   |  20 +-
 t/900_run_cucumber_tests.t                         |  28 +-
 .../step_definitions/core_steps.pl                 | 232 ++++++++-------
 .../step_definitions/tag_steps.pl                  | 129 +++++----
 t/harness_json/mock.feature                        |  20 ++
 t/harness_json/step_definitions/mock_steps.pl      |  24 ++
 t/lib/Test/DumpFeature.pm                          |  26 +-
 .../010_greedy_table_parsing/test_steps.pl         |  12 +-
 61 files changed, 1758 insertions(+), 1168 deletions(-)
 create mode 100644 lib/Test/BDD/Cucumber/Harness/JSON.pm
 mode change 100755 => 100644 lib/Test/BDD/Cucumber/StepFile.pm
 create mode 100644 t/600_harness_json_output.t
 create mode 100644 t/harness_json/mock.feature
 create mode 100644 t/harness_json/step_definitions/mock_steps.pl

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libtest-bdd-cucumber-perl.git



More information about the Pkg-perl-cvs-commits mailing list