mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 13:31:06 +00:00
24eabf89e6
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
25 lines
No EOL
634 B
Ruby
25 lines
No EOL
634 B
Ruby
module Features
|
|
module FormHelpers
|
|
def fill_form(model, hash)
|
|
hash.each do |attribute, value|
|
|
fill_in attribute_translation(model, attribute), :with => value
|
|
end
|
|
end
|
|
|
|
def fill_tinymce(element, contents)
|
|
page.execute_script("$('#{element}').tinymce().setContent('#{contents}')")
|
|
end
|
|
|
|
def submit(model, action)
|
|
helper_translation(model, action)
|
|
end
|
|
|
|
def attribute_translation(model, attribute)
|
|
I18n.t("activerecord.attributes.#{model}.#{attribute}")
|
|
end
|
|
|
|
def helper_translation(model, action)
|
|
I18n.t("helpers.submit.#{model}.#{action}")
|
|
end
|
|
end
|
|
end |