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"
describe NotificationsController do
describe "#index" do
subject { get :index, params: { type: :new } }
let(:user) { FactoryBot.create(:user) }
@ -39,3 +40,4 @@ describe NotificationsController do
end
end
end
end