about summary refs log tree commit diff
path: root/spec/controllers/filters_controller_spec.rb
blob: f68f87ba7a537d22a1472765fc4d4605e5dfdb1b (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
# frozen_string_literal: true

require 'rails_helper'

describe FiltersController do
  render_views

  describe 'GET #index' do
    context 'with signed out user' do
      it 'redirects' do
        get :index

        expect(response).to be_redirect
      end
    end

    context 'with a signed in user' do
      before { sign_in(Fabricate(:user)) }

      it 'returns http success' do
        get :index

        expect(response).to have_http_status(200)
      end
    end
  end
end