Repository URL to install this package:
|
Version:
1.0.0.pre ▾
|
require 'rails_helper'
def it_should_have_view(key, value)
it "should have #{value} for view key '#{key}'" do
expect(subject.send(key)).to eq value
end
end
describe ActiveAdmin::ViewFactory do
it_should_have_view :global_navigation, ActiveAdmin::Views::TabbedNavigation
it_should_have_view :utility_navigation, ActiveAdmin::Views::TabbedNavigation
it_should_have_view :site_title, ActiveAdmin::Views::SiteTitle
it_should_have_view :action_items, ActiveAdmin::Views::ActionItems
it_should_have_view :header, ActiveAdmin::Views::Header
it_should_have_view :blank_slate, ActiveAdmin::Views::BlankSlate
it_should_have_view :action_list_popover, ActiveAdmin::Views::ActionListPopover
it_should_have_view :layout, ActiveAdmin::Views::Pages::Layout
end