Sha256: 26cc2bf3ddb0323a2f191d556ad99927792033f4b116d8753219c16bb0ad2749
Contents?: true
Size: 906 Bytes
Versions: 7
Compression:
Stored size: 906 Bytes
Contents
# -*- encoding : utf-8 -*- describe Card::Set::Rstar::Rules do it 'should render setting view for a right set' do r = Card['*read+*right'].format.render_open expect(r).not_to match(/error/i) expect(r).not_to match('No Card!') # warn "r = #{r}" assert_view_select r, 'table[class="set-rules table"]' do assert_select 'a[href~="/*read+*right+*read?view=open_rule"]', text: 'read' end end it 'should render setting view for a *input rule' do Card::Auth.as_bot do r = Card.fetch('*read+*right+*input', new: {}).format.render_open_rule expect(r).not_to match(/error/i) expect(r).not_to match('No Card!') # warn "r = #{r}" assert_view_select r, 'tr[class="card-slot open-rule edit-rule"]' do assert_select 'input[id="success_id"][name=?][type="hidden"][value="*read+*right+*input"]', 'success[id]' end end end end
Version data entries
7 entries across 7 versions & 1 rubygems