diff --git a/test/jobs/card/remove_inaccessible_notifications_job_test.rb b/test/jobs/card/remove_inaccessible_notifications_job_test.rb deleted file mode 100644 index 38b76314e..000000000 --- a/test/jobs/card/remove_inaccessible_notifications_job_test.rb +++ /dev/null @@ -1,11 +0,0 @@ -require "test_helper" - -class Card::RemoveInaccessibleNotificationsJobTest < ActiveJob::TestCase - test "calls remove_inaccessible_notifications on the card" do - card = cards(:logo) - - Card.any_instance.expects(:remove_inaccessible_notifications) - - Card::RemoveInaccessibleNotificationsJob.perform_now(card) - end -end