Sha256: c6a4000aaa0a162fe2133f233d7b3c39265850d4d68ace24f83e0d111995043d

Contents?: true

Size: 933 Bytes

Versions: 4

Compression:

Stored size: 933 Bytes

Contents

When(/^I search "(.*?)"$/) do |q|
  fill_in "q", with: q
  find("form.search button").click
end

When(/^an existing customer$/) do
  @customer = create(:customer_vault_corporation)
end

When(/^he goes to the next page$/) do
  find(".next").click
end

Given(/^an existing id card$/) do
  @id_card = create(:billing_machine_id_card)
end

Given(/^an existing payment term$/) do
  @payment_term = create(:billing_machine_payment_term)
end

Given(/^an authenticated user$/) do
  @user = create(:user)
  sign_in @user
end


Given(/^an active user$/) do
  @user = create(:user)
end

Given(/^an inactive user$/) do
  @user = create(:user, is_active: false)
end

Given(/^an existing "(.*?)" having "(.*?)" set to "(.*?)"$/) do |factory, key, value|
  create(factory, key => value)
end

Then(/^the selected filter is "(.*?)"$/) do |value|
  selected_values = all(".filters select").map(&:value)
  expect(selected_values).to include value
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dorsale-3.1.5 features/step_definitions/common_steps.rb
dorsale-3.1.4 features/step_definitions/common_steps.rb
dorsale-3.1.3 features/step_definitions/common_steps.rb
dorsale-3.1.2 features/step_definitions/common_steps.rb