Sha256: f0c83f650d6a79c51f95a44f87a2f0647bb23e755af536a518f17caf695beb94
Contents?: true
Size: 843 Bytes
Versions: 5
Compression:
Stored size: 843 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 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
5 entries across 5 versions & 1 rubygems