Sha256: 38cc23ae1781eb154dc0a2ccf4024524cd9501c79bb3a1f3080eff4c3d507a29

Contents?: true

Size: 631 Bytes

Versions: 28

Compression:

Stored size: 631 Bytes

Contents

require 'spec_helper'

describe 'spotlight/about_pages/_empty.html.erb', type: :view do
  let(:can?) { false }
  before do
    allow(view).to receive_messages(can?: can?)
    render
  end
  describe 'when a user cannot edit' do
    it 'does not render an ordered list of steps' do
      expect(rendered).to_not have_css('ol')
    end
  end
  describe 'when a user can edit' do
    let(:can?) { true }
    it 'renders a heading' do
      expect(rendered).to have_css('h2', text: 'Building this about page')
    end
    it 'renders an ordered list of steps' do
      expect(rendered).to have_css('ol li', count: 6)
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
blacklight-spotlight-0.19.0 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.18.0 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.17.1 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.17.0 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.16.0 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.15.0 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.14.2 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.14.1 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.14.0 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.13.0 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.12.1 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.12.0 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.11.0 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.10.3 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.10.2 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.10.1 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.10.0 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.9.2 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.9.1 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.9.0 spec/views/spotlight/about_pages/_empty.html.erb_spec.rb