Sha256: a5d190aa6abd60b6606eb76bcc650a48b34a2be1dde14d2cedb808f406dcbb90

Contents?: true

Size: 856 Bytes

Versions: 4

Compression:

Stored size: 856 Bytes

Contents

Feature: I should be able to see error messages

  Scenario: Errors on the person info 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 ""
    And I press "Submit"
    Then I should see "1 error prohibited this form from being saved:"
    And I should see "Person: Name can't be blank"
    
  Scenario: No errors on the person info 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 "Jeremiah"
    And I press "Submit"
    Then I should not see "0 errors prohibited this form from being saved:"
    And I should not see "Person: Name can't be blank"

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
acts_as_multipart_form-0.0.16 spec/dummy/features/all_errors_partial.feature
acts_as_multipart_form-0.0.15 spec/dummy/features/all_errors_partial.feature
acts_as_multipart_form-0.0.14 spec/dummy/features/all_errors_partial.feature
acts_as_multipart_form-0.0.13 spec/dummy/features/all_errors_partial.feature