Sha256: bd56bbda8971430989ded0c1a0ac70d4c08778ff1392381633eaeaeb382798d9

Contents?: true

Size: 272 Bytes

Versions: 1

Compression:

Stored size: 272 Bytes

Contents

module AuthenticationHelpers
  def sign_in_as!(user)
    visit '/login'
    fill_in 'Email', :with => user.email
    fill_in 'Password', :with => 'secret'
    click_button 'Login'
  end

end

RSpec.configure do |c|
  c.include AuthenticationHelpers, :type => :request
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree_paypal_express-1.1.0 spec/support/authentication_helpers.rb