Sha256: 33ade3cde1fdad4fbf877212600fb734caf10f7892a0533b0a3fad4148f80e37

Contents?: true

Size: 406 Bytes

Versions: 8

Compression:

Stored size: 406 Bytes

Contents

require "application_system_test_case"

class RegistrationsTest < ApplicationSystemTestCase
  test "signing up" do
    visit sign_in_url
    click_on "Sign up"

    fill_in "Email", with: "lazaronixon@hey.com"
    fill_in "Password", with: "new_password"
    fill_in "Password confirmation", with: "new_password"
    click_on "Sign up"

    assert_text "Welcome! You have signed up successfully"
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
authentication-zero-2.1.1 lib/generators/authentication/templates/test_unit/system/registrations_test.rb.tt
authentication-zero-2.1.0 lib/generators/authentication/templates/test_unit/system/registrations_test.rb.tt
authentication-zero-2.0.0 lib/generators/authentication/templates/test_unit/system/registrations_test.rb.tt
authentication-zero-1.0.2 lib/generators/authentication/templates/test_unit/system/registrations_test.rb.tt
authentication-zero-1.0.1 lib/generators/authentication/templates/test_unit/system/registrations_test.rb.tt
authentication-zero-1.0.0 lib/generators/authentication/templates/test_unit/system/registrations_test.rb.tt
authentication-zero-0.0.24 lib/generators/authentication/templates/test_unit/system/registrations_test.rb.tt
authentication-zero-0.0.23 lib/generators/authentication/templates/test_unit/system/registrations_test.rb.tt