Sha256: a1fa01344b04556305f4194cee20727cde25a860da36ae461800f5d583e09b2b

Contents?: true

Size: 962 Bytes

Versions: 6

Compression:

Stored size: 962 Bytes

Contents

Feature: I should be able to submit data using the multipart form system

  Background:
    Given show_previous_next_links is set to true
    And show_incomplete_parts is set to true

  Scenario: Submitting on the first first page
    Given there are no People in the system
    And a person with an incomplete multipart form exists
    When I go to the person hire_form page for that person
    And I fill in "person_name" with "Ethan"
    And I press "Submit"
    Then that person's information should have updated
    And I should be on the person hire_form page
    
  Scenario: Submitting on the last page
    Given there are no People in the system
    And a person with an incomplete multipart form exists
    When I go to the person hire_form last page for that person
    And I fill in "person_name" with "Ethan"
    And I press "Submit"
    Then that person's information should have updated
    And I should be on the person show page for that person

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
acts_as_multipart_form-0.0.16 spec/dummy/features/form_submission.feature
acts_as_multipart_form-0.0.15 spec/dummy/features/form_submission.feature
acts_as_multipart_form-0.0.14 spec/dummy/features/form_submission.feature
acts_as_multipart_form-0.0.13 spec/dummy/features/form_submission.feature
acts_as_multipart_form-0.0.2 spec/dummy/features/form_submission.feature
acts_as_multipart_form-0.0.1 spec/dummy/features/form_submission.feature