mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +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
|