Sha256: 9bf504a9d86c775ba6620608b3f48a57ab11f7b1b1e0c47f8cedcaa456aadacf

Contents?: true

Size: 836 Bytes

Versions: 5

Compression:

Stored size: 836 Bytes

Contents

require 'spec_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

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
active_administration-0.0.3 spec/unit/view_factory_spec.rb
activeadministration-0.0.2 spec/unit/view_factory_spec.rb
active_administration-0.0.2 spec/unit/view_factory_spec.rb
activeadministration-0.0.1 spec/unit/view_factory_spec.rb
active_administration-0.0.1 spec/unit/view_factory_spec.rb