Sha256: eebee98ad63ac3d0944b36f8b1488d34a5c1b14478012381691952220bfc7c0d

Contents?: true

Size: 1.82 KB

Versions: 4

Compression:

Stored size: 1.82 KB

Contents

Feature: Cataloging tasks

  Cataloging functionality can be invoked using Rake tasks that are provided by this gem.


  Background: Rake task availability
    * the Rake tasks provided by the gem have been loaded


  Scenario: Cataloging test cases

  Note: By default, cataloging will be done in the current directory using the '@test_case_' prefix and outline rows will also be cataloged.

    Given there are test cases in the "." directory that have not been cataloged with "@test_case_"
    When the following task is invoked:
    """
    tag_tests
    """
    Then all of the test cases in the "." directory will be cataloged with "@test_case_"

  Scenario: Specifying cataloging options

  Note: Due to the implementation of teh Rake tasks, not all options can be used from the command line. Some options only work when invoking the task within other code.

    Given there are test cases in the "tests" directory that have not been cataloged with "@foo"
    When the following code is run:
    """
    Rake::Task['tag_tests'].invoke('<path_to>/tests','@foo', false)
    """
    Then all of the scenarios and outlines in the "tests" directory will be cataloged with "@foo"
    But outline rows in the "tests" directory are not cataloged

  Scenario: Validating test cases

  Note: By default, validation will be done in the current directory using the '@test_case_' prefix

    When the following task is invoked:
    """
    validate_tests
    """
    Then a validation report for the "." directory with prefix "@test_case_" is output to the console

  Scenario: Specifying validation options
    When the following task is invoked:
    """
    validate_tests['<path_to>/tests','@foo','<path_to>/foo.txt']
    """
    Then a validation report for the "tests" directory with prefix "@foo" is output to "foo.txt"

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cuke_cataloger-2.0.0 testing/cucumber/features/cataloging_tasks.feature
cuke_cataloger-1.6.0 testing/cucumber/features/cataloging_tasks.feature
cuke_cataloger-1.5.0 testing/cucumber/features/cataloging_tasks.feature
cuke_cataloger-1.4.1 testing/cucumber/features/cataloging_tasks.feature