Sha256: 38278db2d76bb27e9cae1f9c249ec05d136ba8c77ad45cdd865d68ffc374b45e

Contents?: true

Size: 1010 Bytes

Versions: 3

Compression:

Stored size: 1010 Bytes

Contents

When(/^the files? (?:is|are) processed$/) do
  @start_index ||= {}
  @directory = CukeModeler::Directory.new(@test_directory)

  tagger = CukeCataloger::UniqueTestCaseTagger.new
  tagger.tag_location = @above_or_below if @above_or_below

  tagger.tag_tests(@directory.path, @tag_prefix, @start_index)
end

When(/^the ids in the test suite are validated$/) do
  @directory = CukeModeler::Directory.new(@test_directory)

  @test_results = CukeCataloger::UniqueTestCaseTagger.new.validate_test_ids(@directory.path, @tag_prefix)
end

When(/^the files are scanned$/) do
  @directory = CukeModeler::Directory.new(@test_directory)
  @exception_raised = false

  @test_results = CukeCataloger::UniqueTestCaseTagger.new.scan_for_tagged_tests(@directory.path, @tag_prefix)
end

When(/^the existing ids are determined$/) do
  @directory = CukeModeler::Directory.new(@test_directory)

  @ids_found = CukeCataloger::UniqueTestCaseTagger.new.determine_known_ids(@directory.path, @tag_prefix)
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cuke_cataloger-1.2.0 testing/cucumber/step_definitions/action_steps.rb
cuke_cataloger-1.1.0 features/step_definitions/action_steps.rb
cuke_cataloger-1.0.0 features/step_definitions/action_steps.rb