Sha256: 46048b2a0a8a8d8a8ba63847574eadc8765a29f5d40c0a0bc1f5757a110a2fc9
Contents?: true
Size: 510 Bytes
Versions: 67
Compression:
Stored size: 510 Bytes
Contents
require 'spec_helper' describe ActiveAdmin::Views::BlankSlate do describe "#blank_slate" do subject do render_arbre_component do blank_slate("There are no Posts yet. <a href=\"/posts/new\">Create one</a></span>") end end its(:tag_name) { should eql 'div' } its(:class_list) { should include('blank_slate_container') } its(:content) { should include '<span class="blank_slate">There are no Posts yet. <a href="/posts/new">Create one</a></span>' } end end
Version data entries
67 entries across 67 versions & 6 rubygems