Sha256: ebe63d2c0d0799f909edfae273f45b16daebd8d3bba3e0e9095db7e8bb45c06b

Contents?: true

Size: 1.05 KB

Versions: 6

Compression:

Stored size: 1.05 KB

Contents

require 'spec_helper'

describe "Cancelling + Resuming", type: :feature do

  stub_authorization!

  let(:user) { double(id: 123, has_spree_role?: true, spree_api_key: 'fake') }

  before do
    allow_any_instance_of(Spree::Admin::BaseController).to receive(:try_spree_current_user).and_return(user)
  end

  let(:order) do
    order = create(:order)
    order.update_columns({
      state: 'complete',
      completed_at: Time.current
    })
    order
  end

  it "can cancel an order" do
    visit spree.edit_admin_order_path(order.number)
    click_button 'Cancel'
    within(".additional-info") do
      within(".state") do
        expect(page).to have_content("canceled")
      end
    end
  end

  context "with a cancelled order" do
    before do
      order.update_column(:state, 'canceled')
    end

    it "can resume an order" do
      visit spree.edit_admin_order_path(order.number)
      click_button 'Resume'
      within(".additional-info") do
        within(".state") do
          expect(page).to have_content("resumed")
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
spree_backend-3.3.0.rc1 spec/features/admin/orders/cancelling_and_resuming_spec.rb
spree_backend-3.2.1 spec/features/admin/orders/cancelling_and_resuming_spec.rb
spree_backend-3.2.0 spec/features/admin/orders/cancelling_and_resuming_spec.rb
spree_backend-3.2.0.rc3 spec/features/admin/orders/cancelling_and_resuming_spec.rb
spree_backend-3.2.0.rc2 spec/features/admin/orders/cancelling_and_resuming_spec.rb
spree_backend-3.2.0.rc1 spec/features/admin/orders/cancelling_and_resuming_spec.rb