about summary refs log tree commit diff
path: root/spec/controllers/auth/registrations_controller_spec.rb
blob: f7ebebbcb8dec3e7345f74ba2f9f04a05ad591c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require 'rails_helper'

RSpec.describe Auth::RegistrationsController, type: :controller do
  render_views

  describe 'GET #new' do
    before do
      request.env["devise.mapping"] = Devise.mappings[:user]
    end

    it 'returns http success' do
      get :new
      expect(response).to have_http_status(:success)
    end
  end

  describe 'POST #create' do
    before do
      request.env["devise.mapping"] = Devise.mappings[:user]
      post :create, params: { user: { account_attributes: { username: 'test' }, email: 'test@example.com', password: '12345678', password_confirmation: '12345678' } }
    end

    it 'redirects to home page' do
      expect(response).to redirect_to root_path
    end

    it 'creates user' do
      expect(User.find_by(email: 'test@example.com')).to_not be_nil
    end
  end
end