module Archangel::TestingSupport::FillInFormHelpers

Fill in form helpers for testing

Does not submit the form

Public Instance Methods

fill_in_password_with(password = "", confirm_password = "") click to toggle source
# File lib/archangel/testing_support/helpers/fill_in_form_helpers.rb, line 11
def fill_in_password_with(password = "", confirm_password = "")
  fill_in "Password", with: password, match: :prefer_exact
  fill_in "Confirm Password", with: confirm_password, match: :prefer_exact
end