Sha256: 4d755e65e96f4d2970389716e9ba68aa365a16403a9fade1d45311cdba602b10
Contents?: true
Size: 849 Bytes
Versions: 6
Compression:
Stored size: 849 Bytes
Contents
require 'spec_helper' # This test exists in this file because in the standard admin/products_controller spec # There is the stub_authorization call. This call is not triggered for this test because # the load_resource filter in Spree::Admin::ResourceController is prepended to the filter chain # this means this call is triggered before the authorize_admin call and in this case # the load_resource filter halts the request meaning authorize_admin is not called at all. describe Spree::Admin::ProductsController, type: :controller do stub_authorization! # Regression test for GH https://github.com/spree/spree/issues/538 it "cannot find a non-existent product" do spree_get :edit, id: "non-existent-product" expect(response).to redirect_to(spree.admin_products_path) expect(flash[:error]).to eql("Product is not found") end end
Version data entries
6 entries across 6 versions & 1 rubygems