summaryrefslogtreecommitdiff
path: root/spec/support/features/rss_shared_examples.rb
blob: 1cbb413499585a948684c5c24541b21a69c5b5b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
shared_examples "an autodiscoverable RSS feed with current_user's RSS token" do
  it "has an RSS autodiscovery link tag with current_user's RSS token" do
    expect(page).to have_css("link[type*='atom+xml'][href*='rss_token=#{Thread.current[:current_user].rss_token}']", visible: false)
  end
end

shared_examples "it has an RSS button with current_user's RSS token" do
  it "shows the RSS button with current_user's RSS token" do
    expect(page).to have_css("a:has(.fa-rss)[href*='rss_token=#{Thread.current[:current_user].rss_token}']")
  end
end

shared_examples "an autodiscoverable RSS feed without an RSS token" do
  it "has an RSS autodiscovery link tag without an RSS token" do
    expect(page).to have_css("link[type*='atom+xml']:not([href*='rss_token'])", visible: false)
  end
end

shared_examples "it has an RSS button without an RSS token" do
  it "shows the RSS button without an RSS token" do
    expect(page).to have_css("a:has(.fa-rss):not([href*='rss_token'])")
  end
end