Sha256: 031e0819a5942bf320083b8099a7e979418c77e14d9c5cec83aa94b29dd813e1

Contents?: true

Size: 673 Bytes

Versions: 4

Compression:

Stored size: 673 Bytes

Contents

require "application_system_test_case"

class SudosTest < ApplicationSystemTestCase
  setup do
    @<%= singular_table_name %> = sign_in_as(<%= table_name %>(:lazaro_nixon))
  end

  test "executing sudo" do
    visit new_sudo_url(proceed_to_url: edit_password_url)
    fill_in :password, with: "Secret1*3*5*"
    click_on "Continue"

    assert_selector "h1", text: "Change your password"
  end

  def sign_in_as(<%= singular_table_name %>)
    visit sign_in_url
    fill_in :email, with: <%= singular_table_name %>.email
    fill_in :password, with: "Secret1*3*5*"
    click_on "Sign in"

    assert_current_path root_path
    return <%= singular_table_name %>
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
authentication-zero-2.7.0 lib/generators/authentication/templates/test_unit/system/sudos_test.rb.tt
authentication-zero-2.6.0 lib/generators/authentication/templates/test_unit/system/sudos_test.rb.tt
authentication-zero-2.5.1 lib/generators/authentication/templates/test_unit/system/sudos_test.rb.tt
authentication-zero-2.5.0 lib/generators/authentication/templates/test_unit/system/sudos_test.rb.tt