Sha256: f06e0e5b01fd3ff001ddba965634cb9d74cb7c3670210f16c39a38d3e7b40ac4

Contents?: true

Size: 893 Bytes

Versions: 7

Compression:

Stored size: 893 Bytes

Contents

Then /^(?:the )?file(?: "([^"]*)")? is found to have the following properties:$/ do |file, properties|
  file ||= 1
  properties = properties.rows_hash

  properties.each do |property, expected_value|
    if property == 'path'
      expected_value.sub!('path_to', @test_directory)
    end

    expected = expected_value
    actual = @parsed_files[file - 1].send(property.to_sym).to_s

    assert(actual == expected, "Expected: #{expected}\n but was: #{actual}")
  end
end

When /^(?:the )?file(?: "([^"]*)")? features are as follows:$/ do |file, feature|
  file ||= 1

  expected = feature.raw.flatten.first
  actual = @parsed_files[file - 1].feature.name

  assert(actual == expected, "Expected: #{expected}\n but was: #{actual}")
end

When /^(?:the )?file(?: "([^"]*)")? has no features$/ do |file|
  file ||= 1

  assert @parsed_files[file - 1].feature.nil?
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
cucumber_analytics-1.4.2 features/step_definitions/feature_file_steps.rb
cucumber_analytics-1.4.1 features/step_definitions/feature_file_steps.rb
cucumber_analytics-1.4.0 features/step_definitions/feature_file_steps.rb
cucumber_analytics-1.3.0 features/step_definitions/feature_file_steps.rb
cucumber_analytics-1.2.0 features/step_definitions/feature_file_steps.rb
cucumber_analytics-1.1.1 features/step_definitions/feature_file_steps.rb
cucumber_analytics-1.0.0 features/step_definitions/feature_file_steps.rb