Sha256: d21522493bb845ad93537d0ef7489fb19d4dcc0874dd2bd31d2b02e80be910b2
Contents?: true
Size: 356 Bytes
Versions: 19
Compression:
Stored size: 356 Bytes
Contents
require "test_helper" class ApplicationSystemTestCase < ActionDispatch::SystemTestCase driven_by :selenium, using: :chrome, screen_size: [1400, 1400] def sign_in_as(user) visit sign_in_url fill_in :email, with: user.email fill_in :password, with: "Secret1*3*5*" click_on "Sign in" assert_current_path root_url user end end
Version data entries
19 entries across 19 versions & 1 rubygems