Sha256: 4ab424d2e9936d537e9fe1ca8443c79873a3e8dd58c8f4219bda6d64d43211dd

Contents?: true

Size: 620 Bytes

Versions: 1

Compression:

Stored size: 620 Bytes

Contents

require 'spec_helper'

feature "Thank you" do

  scenario "Viewing the Thank You page" do
    visit thank_you_applicant_path(email: "applicant@example.com")

    expect(page).to have_content "Next Step: Verify your email address"
    expect(page).to have_content "We've sent a verification message to applicant@example.com"
    expect(page).to have_content "Check your email and follow the link to continue the applicant process."
    expect(page).to have_content "Can't find the email?"
    expect(page).to have_content "Resend verification email"
    expect(page).to have_content "visit the support center"
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
applicants-0.11.0 spec/features/thank_you_spec.rb