mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 21:10:54 +00:00
10 lines
No EOL
221 B
Ruby
10 lines
No EOL
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 |