# frozen_string_literal: true require 'rails_helper' RSpec.describe ProductCart, type: :model do let(:product_cart) { create(:product_cart) } it 'should belong to product' do expect(product_cart).to respond_to(:product) end it 'should belong to cart' do expect(product_cart).to respond_to(:cart) end end