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

describe RssHelper do
  describe '#rss_url_options' do
    context 'when signed in' do
      it "includes the current_user's rss_token" do
        current_user = create(:user)
        allow(helper).to receive(:current_user).and_return(current_user)
        expect(helper.rss_url_options).to include rss_token: current_user.rss_token
      end
    end

    context 'when signed out' do
      it "does not have an rss_token" do
        allow(helper).to receive(:current_user).and_return(nil)
        expect(helper.rss_url_options[:rss_token]).to be_nil
      end
    end
  end
end