Sha256: 5a563ec533b59f0b780d19033e5f5e1e423f397554c1d13e2b051e8a7dbd3401
Contents?: true
Size: 1.06 KB
Versions: 62
Compression:
Stored size: 1.06 KB
Contents
require 'spec_helper' describe ActiveAdmin::Resource::Sidebars do let(:resource) do namespace = ActiveAdmin::Namespace.new(ActiveAdmin::Application.new, :admin) namespace.register(Post) end let(:sidebar) { ActiveAdmin::SidebarSection.new(:help) } describe "adding a new sidebar section" do before do resource.clear_sidebar_sections! resource.sidebar_sections << sidebar end it "should add a sidebar section" do resource.should have(1).sidebar_sections end end describe "retrieving sections for a controller action" do let(:only_index){ ActiveAdmin::SidebarSection.new(:help, :only => :index) } let(:only_show){ ActiveAdmin::SidebarSection.new(:help, :only => :show) } before do resource.clear_sidebar_sections! resource.sidebar_sections << only_index resource.sidebar_sections << only_show end it "should only return the relevant action items" do resource.should have(2).sidebar_sections resource.sidebar_sections_for("index").should == [only_index] end end end
Version data entries
62 entries across 62 versions & 4 rubygems