summaryrefslogtreecommitdiff
path: root/spec/helpers/broadcast_messages_helper_spec.rb
blob: c7c6f45d14439886bac8b57f17caf5bfad9b1a99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'spec_helper'

describe BroadcastMessagesHelper do
  describe 'broadcast_styling' do
    let(:broadcast_message) { double(color: '', font: '') }

    context "default style" do
      it "should have no style" do
        expect(broadcast_styling(broadcast_message)).to eq ''
      end
    end

    context "customized style" do
      let(:broadcast_message) { double(color: "#f2dede", font: '#b94a48') }

      it "should have a customized style" do
        expect(broadcast_styling(broadcast_message)).
          to match('background-color: #f2dede; color: #b94a48')
      end
    end
  end
end