Move tests for mute view into own controller spec file
This commit is contained in:
parent
51413bf55b
commit
6b5e59fa1c
|
@ -0,0 +1,39 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require "rails_helper"
|
||||||
|
|
||||||
|
describe Settings::MutesController, type: :controller do
|
||||||
|
let(:user) { FactoryBot.create(:user) }
|
||||||
|
|
||||||
|
describe "#index" do
|
||||||
|
subject { get :index }
|
||||||
|
|
||||||
|
context "user signed in" do
|
||||||
|
before(:each) { sign_in user }
|
||||||
|
|
||||||
|
it "shows the edit_blocks page" do
|
||||||
|
subject
|
||||||
|
expect(response).to have_rendered(:index)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "only contains blocks of the signed in user" do
|
||||||
|
other_user = create(:user)
|
||||||
|
other_user.block(user)
|
||||||
|
|
||||||
|
subject
|
||||||
|
|
||||||
|
expect(assigns(:blocks)).to eq(user.active_block_relationships)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "only contains anonymous blocks of the signed in user" do
|
||||||
|
other_user = create(:user)
|
||||||
|
question = create(:question)
|
||||||
|
other_user.anonymous_blocks.create(identifier: "very-real-identifier", question_id: question.id)
|
||||||
|
|
||||||
|
subject
|
||||||
|
|
||||||
|
expect(assigns(:anonymous_blocks)).to eq(user.anonymous_blocks)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -62,36 +62,4 @@ describe UserController, type: :controller do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "#edit_blocks" do
|
|
||||||
subject { get :edit_blocks }
|
|
||||||
|
|
||||||
context "user signed in" do
|
|
||||||
before(:each) { sign_in user }
|
|
||||||
|
|
||||||
it "shows the edit_blocks page" do
|
|
||||||
subject
|
|
||||||
expect(response).to have_rendered(:edit_blocks)
|
|
||||||
end
|
|
||||||
|
|
||||||
it "only contains blocks of the signed in user" do
|
|
||||||
other_user = create(:user)
|
|
||||||
other_user.block(user)
|
|
||||||
|
|
||||||
subject
|
|
||||||
|
|
||||||
expect(assigns(:blocks)).to eq(user.active_block_relationships)
|
|
||||||
end
|
|
||||||
|
|
||||||
it "only contains anonymous blocks of the signed in user" do
|
|
||||||
other_user = create(:user)
|
|
||||||
question = create(:question)
|
|
||||||
other_user.anonymous_blocks.create(identifier: "very-real-identifier", question_id: question.id)
|
|
||||||
|
|
||||||
subject
|
|
||||||
|
|
||||||
expect(assigns(:anonymous_blocks)).to eq(user.anonymous_blocks)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue