Sha256: e6d0bb7742b87be56c98844a86eb8df25db7f40ebcd3d76395ad64df40ceeac4
Contents?: true
Size: 868 Bytes
Versions: 1
Compression:
Stored size: 868 Bytes
Contents
require "test_helper" class RegistrationsControllerTest < ActionDispatch::IntegrationTest test "should sign up" do assert_difference("<%= class_name %>.count") do post sign_up_url, params: { email: "lazaronixon@hey.com", password: "secret123", password_confirmation: "secret123" } end assert_response :created end test "should destroy account" do @<%= singular_table_name %>, @token = sign_in_as(<%= table_name %>(:lazaro_nixon)) assert_difference("<%= class_name %>.count", -1) do delete registration_url, headers: { "Authorization" => "Bearer #{@token}" } end assert_response :no_content end def sign_in_as(<%= singular_table_name %>) post(sign_in_url, params: { email: <%= singular_table_name %>.email, password: "secret123" }); [<%= singular_table_name %>, response.headers["X-Session-Token"]] end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
authentication-zero-2.2.8 | lib/generators/authentication/templates/test_unit/controllers/api/registrations_controller_test.rb.tt |