7 lines
195 B
Ruby
7 lines
195 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe NotificationsHelper, type: :helper do
|
|
it "returns a category image" do
|
|
expect(helper.reaction_image("unicorn")).to eq("unicorn-filled.svg")
|
|
end
|
|
end
|