mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-28 04:00:45 +00:00
10 lines
221 B
Ruby
10 lines
221 B
Ruby
|
module Features
|
||
|
module SessionHelpers
|
||
|
def sign_in
|
||
|
visit root_path
|
||
|
user = create(:user)
|
||
|
fill_form(:user, { email: user.email, password: user.raw_password })
|
||
|
click_button 'ยป'
|
||
|
end
|
||
|
end
|
||
|
end
|