spec/unit/views/components/blank_slate_spec.rb in activeadmin-1.0.0.pre2 vs spec/unit/views/components/blank_slate_spec.rb in activeadmin-1.0.0.pre3

- old
+ new

@@ -9,19 +9,19 @@ end end describe '#tag_name' do subject { super().tag_name } - it { is_expected.to eql 'div' } + it { is_expected.to eql 'div' } end describe '#class_list' do subject { super().class_list } - it { is_expected.to include('blank_slate_container') } + it { is_expected.to include('blank_slate_container') } end describe '#content' do subject { super().content } - it { is_expected.to include '<span class="blank_slate">There are no Posts yet. <a href="/posts/new">Create one</a></span>' } + it { is_expected.to include '<span class="blank_slate">There are no Posts yet. <a href="/posts/new">Create one</a></span>' } end end end