Sha256: 22f1dc37b36767d9b2e6cb08e82e5ba101e78e8edace84d7bd094218ff435235
Contents?: true
Size: 596 Bytes
Versions: 5
Compression:
Stored size: 596 Bytes
Contents
describe Card::Set::All::RichHtml::Toolbar do context "show toolbar" do subject do render_content "{{A|edit}}" end it "renders toolbar" do is_expected.to have_tag "div", with: { class: "SELF-a edit-view" } do with_tag "nav", with: { class: "toolbar" } end end end context "hidden toolbar" do subject do render_content "{{A|edit; hide: toolbar}}" end it "hides toolbar" do is_expected.to have_tag "div", with: { class: "SELF-a edit-view" } do without_tag "nav", with: { class: "toolbar" } end end end end
Version data entries
5 entries across 5 versions & 1 rubygems