require 'spec_helper'
describe ActiveAdmin::Views::BlankSlate do
setup_arbre_context!
describe "#blank_slate" do
subject { blank_slate("There are no Posts yet. Create one") }
its(:tag_name) { should eql 'div' }
its(:class_list) { should include('blank_slate_container') }
its(:content) { should include 'There are no Posts yet. Create one' }
end
end