mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-31 23:10:44 +00:00
704a6b4e9b
Changed login field text Changed database configuration connection pool size to be configured via dotenv Use a single BBcode parser library Added better translations coverage Code formatting Increases maximum article text limit Added database cleaner with the deletion strategy during testing
12 lines
No EOL
247 B
Ruby
12 lines
No EOL
247 B
Ruby
module Features
|
|
module SessionHelpers
|
|
def sign_in_as(user)
|
|
visit root_path
|
|
|
|
fill_in "login_username", with: user.username
|
|
fill_in "login_password", with: user.raw_password
|
|
|
|
click_button 'Login'
|
|
end
|
|
end
|
|
end |