Repository URL to install this package:
|
Version:
1.0.0.pre ▾
|
require 'rails_helper'
describe ActiveAdmin::Views::Pages::Layout do
let(:assigns){ {} }
let(:helpers) do
helpers = mock_action_view
{ active_admin_application: active_admin_application,
active_admin_config: double('Config', action_items?: nil, breadcrumb: nil, sidebar_sections?: nil),
active_admin_namespace: active_admin_namespace,
csrf_meta_tag: '',
current_active_admin_user: nil,
current_active_admin_user?: false,
current_menu: double('Menu', items: []),
params: {controller: 'UsersController', action: 'edit'},
env: {}
}.each do |method, returns|
allow(helpers).to receive(method).and_return returns
end
helpers
end
let(:active_admin_namespace){ ActiveAdmin::Namespace.new(ActiveAdmin::Application.new, :myspace) }
let(:active_admin_application){ ActiveAdmin.application }
let(:view_factory) { ActiveAdmin::ViewFactory.new }
let(:layout) do
render_arbre_component assigns, helpers do
insert_tag ActiveAdmin::Views::Pages::Layout
end
end
it "should be the @page_title if assigned in the controller" do
assigns[:page_title] = "My Page Title"
expect(layout.title).to eq "My Page Title"
end
it "should be the default translation" do
helpers.params[:action] = "edit"
expect(layout.title).to eq "Edit"
end
describe "the body" do
it "should have class 'active_admin'" do
expect(layout.build.class_list).to include 'active_admin'
end
it "should have namespace class" do
expect(layout.build.class_list).to include "#{active_admin_namespace.name}_namespace"
end
end
end