Sha256: fe280e108bd0245c22aff176cb56d57226c99ebed0e44613c3027b92a46d3326
Contents?: true
Size: 523 Bytes
Versions: 32
Compression:
Stored size: 523 Bytes
Contents
require 'spec_helper' describe Spree::Admin::ShippingMethodsController, type: :controller do stub_authorization! # Regression test for https://github.com/spree/spree/issues/1240 it "should not hard-delete shipping methods" do shipping_method = stub_model(Spree::ShippingMethod) allow(Spree::ShippingMethod).to receive_messages find: shipping_method expect(shipping_method.deleted_at).to be_nil delete :destroy, params: { id: 1 } expect(shipping_method.reload.deleted_at).not_to be_nil end end
Version data entries
32 entries across 32 versions & 1 rubygems