Sha256: b4ca3097eba5f303b60e68f823693ba6ae0479fbcae68ca12856dbafccdc67fb
Contents?: true
Size: 812 Bytes
Versions: 12
Compression:
Stored size: 812 Bytes
Contents
require 'spec_helper' describe Spree::Admin::PromotionActionsController, type: :controller do stub_authorization! let!(:promotion) { create(:promotion) } it "can create a promotion action of a valid type" do spree_post :create, promotion_id: promotion.id, action_type: "Spree::Promotion::Actions::CreateAdjustment" expect(response).to be_redirect expect(response).to redirect_to spree.edit_admin_promotion_path(promotion) expect(promotion.actions.count).to eq(1) end it "can not create a promotion action of an invalid type" do spree_post :create, promotion_id: promotion.id, action_type: "Spree::InvalidType" expect(response).to be_redirect expect(response).to redirect_to spree.edit_admin_promotion_path(promotion) expect(promotion.rules.count).to eq(0) end end
Version data entries
12 entries across 12 versions & 2 rubygems