From 4611fdd6da7f9a1cc04144104e5ca26398f1b502 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Thu, 6 Apr 2023 15:29:08 -0600 Subject: AƱade specs de product_cart MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spec/models/product_cart_spec.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'spec/models/product_cart_spec.rb') diff --git a/spec/models/product_cart_spec.rb b/spec/models/product_cart_spec.rb index 00a8f6c..2c4d9d1 100644 --- a/spec/models/product_cart_spec.rb +++ b/spec/models/product_cart_spec.rb @@ -12,4 +12,12 @@ RSpec.describe ProductCart, type: :model do it 'should belong to cart' do expect(product_cart).to respond_to(:cart) end + + describe '#sole_product_in_cart' do + it 'validates for duplicate products in the cart' do + another_product_cart = build(:product_cart, cart: product_cart.cart, product: product_cart.product) + expect(another_product_cart.save).to be_falsey + expect(another_product_cart.errors[:product_id]).to be_present + end + end end -- cgit v1.2.3