Sha256: 6a4de3c09be8e00661cb1de0fa5086f730b48c9d8eb485efe14f1e811dd1bf9f

Contents?: true

Size: 691 Bytes

Versions: 8

Compression:

Stored size: 691 Bytes

Contents

require "application_system_test_case"

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

  test "executing sudo" do
    visit new_sessions_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_url
    return <%= singular_table_name %>
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
authentication-zero-2.9.2 lib/generators/authentication/templates/test_unit/system/sessions/sudos_test.rb.tt
authentication-zero-2.9.1 lib/generators/authentication/templates/test_unit/system/sessions/sudos_test.rb.tt
authentication-zero-2.9.0 lib/generators/authentication/templates/test_unit/system/sessions/sudos_test.rb.tt
authentication-zero-2.8.4 lib/generators/authentication/templates/test_unit/system/sessions/sudos_test.rb.tt
authentication-zero-2.8.3 lib/generators/authentication/templates/test_unit/system/sessions/sudos_test.rb.tt
authentication-zero-2.8.2 lib/generators/authentication/templates/test_unit/system/sessions/sudos_test.rb.tt
authentication-zero-2.8.1 lib/generators/authentication/templates/test_unit/system/sessions/sudos_test.rb.tt
authentication-zero-2.8.0 lib/generators/authentication/templates/test_unit/system/sessions/sudos_test.rb.tt