Sha256: 80ed98306d83e0b32698106ec8f9265654bb2f6597843955ee7e89735570f0d9

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 KB

Contents

Given /^a "([^\"]*)" data import fetches results listed in "(.*)"$/ do |model, file_name|
  @data_import_model = model.constantize
  table_name = @data_import_model.table_name

  fixture_path = File.expand_path("features/support/imports/#{file_name}", Dir.pwd) 

  fixture = Fixtures.new @data_import_model.connection, table_name, model, fixture_path

  @data_import_model.connection.transaction(:requires_new => true) do
    fixture.delete_existing_fixtures
    fixture.insert_fixtures
  end
end

When /^a data import verifies "(.*)"$/ do |verification_step_name|
  @verification = @data_import_model.data_miner_base.steps.find { |f|
    f.respond_to?(:description) and f.description == verification_step_name
  }
  @verification_result = begin
                           @verification.run true
                           true
                         rescue => e
                           false
                         end
end

Then /^the verification should be successful$/ do
  @verification_result.should be_true
end
Then /^the verification should not be successful$/ do
  @verification_result.should be_false
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
sniff-0.5.2 lib/test_support/cucumber/step_definitions/data_steps.rb
sniff-0.5.1 lib/test_support/cucumber/step_definitions/data_steps.rb
sniff-0.5.0 lib/test_support/cucumber/step_definitions/data_steps.rb
sniff-0.4.12 lib/test_support/cucumber/step_definitions/data_steps.rb
sniff-0.4.11 lib/test_support/cucumber/step_definitions/data_steps.rb
sniff-0.4.10 lib/test_support/cucumber/step_definitions/data_steps.rb
sniff-0.4.9 lib/test_support/cucumber/step_definitions/data_steps.rb