Sha256: 1887afd4fad24969605ce1812f95fb3b91d25e2ccd351a9158c29afc66fd2d55

Contents?: true

Size: 1.24 KB

Versions: 25

Compression:

Stored size: 1.24 KB

Contents

Given(/^the user goes on the new payment_term page$/) do
  visit dorsale.billing_machine_payment_terms_path
  find(".link_create").click
end

When(/^he fills the payment_term's information$/) do
  fill_in "billing_machine_payment_term_label", with: "Payment Term Label"
end

When(/^creates a new payment_term$/) do
  find("[type=submit]").click
end

Then(/^he is redirected on the payment_terms page$/) do
  expect(current_path).to eq dorsale.billing_machine_payment_terms_path
end

Then(/^the payment_term is added to the payment_term list$/) do
  expect(page).to have_content "Payment Term Label"
end

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

When(/^the user edits the payment_term$/) do
  visit dorsale.billing_machine_payment_terms_path
  find(".link_update").click
end

Then(/^the current payment_term's label should be pre\-filled$/) do
  expect(page).to have_field("billing_machine_payment_term_label", with: @payment_term.label)
end

When(/^he validates the new payment_term$/) do
  fill_in "billing_machine_payment_term_label", with: "New Payment Term Label"
  find("[type=submit]").click
end

Then(/^the payment_term's label is updated$/) do
  expect(page).to have_content "New Payment Term Label"
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
dorsale-3.14.9 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.14.8 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.14.7 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.14.6 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.14.5 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.14.3 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.14.2 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.14.1 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.14.0 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.13.0 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.12.0 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.11.0 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.10.3 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.10.2 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.10.1 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.10.0 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.9.8 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.9.7 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.9.6 features/step_definitions/billing_machine_payment_terms_steps.rb
dorsale-3.9.5 features/step_definitions/billing_machine_payment_terms_steps.rb