gitlab-org--gitlab-foss/spec/helpers/notifications_helper_spec.rb

36 lines
985 B
Ruby
Raw Normal View History

2013-03-27 13:04:29 -04:00
require 'spec_helper'
describe NotificationsHelper do
2013-10-20 23:58:38 -04:00
describe 'notification_icon' do
let(:notification) { stub(disabled?: false, participating?: false, watch?: false) }
context "disabled notification" do
before { notification.stub(disabled?: true) }
it "has a red icon" do
notification_icon(notification).should match('class="icon-circle cred"')
end
end
context "participating notification" do
before { notification.stub(participating?: true) }
it "has a blue icon" do
notification_icon(notification).should match('class="icon-circle cblue"')
end
end
context "watched notification" do
before { notification.stub(watch?: true) }
it "has a green icon" do
notification_icon(notification).should match('class="icon-circle cgreen"')
end
end
it "has a blue icon" do
notification_icon(notification).should match('class="icon-circle-blank cblue"')
end
end
2013-03-27 13:04:29 -04:00
end