Sha256: ab4a6e67ed06cf1a4c64bf0ff1cb0a261825601f89c45088d8e7558548fe004b
Contents?: true
Size: 502 Bytes
Versions: 62
Compression:
Stored size: 502 Bytes
Contents
require 'test_helper' module Workarea module Storefront class EmailSignupSystemTest < Workarea::SystemTest def test_allows_email_signing_up visit storefront.email_signup_path within '#dialog_email_signup_form' do fill_in 'email', with: 'MMartyn@workarea.com' click_button t('workarea.storefront.users.join') end assert_current_path(storefront.email_signup_path) assert(page.has_content?('Success')) end end end end
Version data entries
62 entries across 62 versions & 1 rubygems