Move `NotificationsController#index` test into their own `describe` block

This commit is contained in:
Karina Kwiatek 2023-03-10 21:16:52 +01:00
parent 80d8bebe57
commit 0db44949e6
1 changed files with 31 additions and 29 deletions

View File

@ -3,6 +3,7 @@
require "rails_helper" require "rails_helper"
describe NotificationsController do describe NotificationsController do
describe "#index" do
subject { get :index, params: { type: :new } } subject { get :index, params: { type: :new } }
let(:user) { FactoryBot.create(:user) } let(:user) { FactoryBot.create(:user) }
@ -38,4 +39,5 @@ describe NotificationsController do
expect { subject }.to change { Notification.for(user).where(new: true).count }.from(2).to(0) expect { subject }.to change { Notification.for(user).where(new: true).count }.from(2).to(0)
end end
end end
end
end end