Sha256: 5a96eb9927c4257f937f841ce259e0c775cb5f773956a7de211a43d7d1d580ef
Contents?: true
Size: 599 Bytes
Versions: 32
Compression:
Stored size: 599 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
32 entries across 32 versions & 1 rubygems