Sha256: 7822ec8ca5b8413ec9d53ec99ed73bab1c826427dcf24e9238b4b37657fdbf31
Contents?: true
Size: 1.83 KB
Versions: 11
Compression:
Stored size: 1.83 KB
Contents
# -*- encoding : utf-8 -*- RSpec.describe Card::Set::All::Form do describe "type_list" do let(:card) { Card["UserForm"] } # no cards with this type it "gets type options from type_field renderer method" do aggregate_failures do expect(card.format.type_field).to match(/<option [^>]*selected/) tf = card.format.type_field(no_current_type: true) expect(tf).not_to match(/<option [^>]*selected/) expect(tf.scan(/<option /).length).to eq(SharedData::CARDTYPE_COUNT) tf = card.format.type_field expect(tf).to match(/<option [^>]*selected/) expect(tf.scan(/<option /).length).to eq(SharedData::CARDTYPE_COUNT) end end it "gets type list" do Card::Auth.as :anonymous do tf = card.format.type_field(no_current_type: true) aggregate_failures do expect(tf).not_to match(/<option [^>]*selected/) expect(tf.scan(/<option /).length).to eq(1) tf = card.format.type_field expect(tf).to match(/<option [^>]*selected/) expect(tf.scan(/<option /).length).to eq(2) end end end end context "with type and header" do it "renders type without no-edit class when no cards of type" do card = Card["UserForm"] # no cards with this type aggregate_failures do expect(card.format.render_type) .to match(/<a[^>]* class="([^"]*)?\bcardtype\b[^"]*"/) expect(card.format.render_type) .not_to match(/<a[^>]* class="([^"]*)?\bno-edit\b[^"]*"/) end end it "renders type header with no-edit class when cards of type exist" do no_edit_card = Card["cardtype a"] expect(no_edit_card.format.render_type) .to match(/<a[^>]* class="([^"]*)?\bcardtype\b[^"]*"/) .and match(/<a[^>]* class="([^"]*)?\bno-edit\b[^"]*"/) end end end
Version data entries
11 entries across 11 versions & 1 rubygems