Sha256: 2b9c72bdb51b61ae3c8dd1f76fe32b9ccdb393b7f318768c7c5670a40c25a9cc
Contents?: true
Size: 1.81 KB
Versions: 15
Compression:
Stored size: 1.81 KB
Contents
# -*- encoding : utf-8 -*- describe Card::Set::Type::Cardtype do describe "view: add_button" do it "creates link with correct path" do expect(render_content("{{Basic|add_button}}")) .to have_tag('a[href="/new/Basic"]', text: "Add Basic") end it "handles title argument" do expect(render_content("{{Basic|add_button;title: custom link text}}")) .to have_tag('a[href="/new/Basic"]', text: "custom link text") end it "handles params" do expect(render_content("{{Basic|add_button;params:_project=_self}}")) .to have_tag('a[href="/new/Basic?_project=Tempo+Rary+2"]') end end it "can only be deleted when no instances present" do city = create_cardtype "City" sparta = create_city "Sparta" expect(sparta.type_id).to eq city.id expect { city.delete! } .to raise_error(/this card must remain/) expect(Card["City"]).to be_a(Card) sparta.delete! expect { city.delete! } .not_to raise_error end it "type can't be change when instances present" do expect { update "Cardtype A", type_id: Card::BasicID } .to raise_error(/can't alter this type/) Card["type-a-card"].delete! expect { update "Cardtype A", type_id: Card::BasicID } .not_to raise_error expect(Card["Cardtype A"]).to have_type :basic end specify "no cards without cardtype" do Card.all.each do |card| expect(card.type_card).to be_a(Card) end end describe "new Cardtype" do let(:ct) do Card::Auth.as_bot do Card.create! name: "Animal", type: "Cardtype" end end it "has create permissions" do expect(ct.who_can(:create)).not_to be_nil end it "its create permissions should be based on Basic" do expect(ct.who_can(:create)).to eq(Card["Basic"].who_can(:create)) end end end
Version data entries
15 entries across 15 versions & 1 rubygems