Sha256: 86a0839f103c8b700ebe58a5b7436a8f8305e9510787e2248ad2d202e7de1c06
Contents?: true
Size: 742 Bytes
Versions: 42
Compression:
Stored size: 742 Bytes
Contents
require 'spec_helper' describe 'Promotions', type: :feature do stub_authorization! let!(:reimbursement) { create(:reimbursement) } it "should display the reimbursements table" do visit spree.admin_order_reimbursement_path(reimbursement.order, reimbursement) expect(page).to have_css('table thead tr th', text: 'Product') expect(page).to have_css('table thead tr th', text: 'Preferred Reimbursement Type') expect(page).to have_css('table thead tr th', text: 'Reimbursement Type Override') expect(page).to have_css('table thead tr th', text: 'Exchange for') expect(page).to have_css('table thead tr th', text: 'Amount Before Sales Tax') expect(page).to have_css('table thead tr th', text: 'Total') end end
Version data entries
42 entries across 42 versions & 1 rubygems