Check Specific Arguments To Received Method
{
name: 'Taco Tray',
product_id: 'taco123',
price: 4500,
description: 'A big tray of tacos',
discounts: {
coupon: 'DISCOUNT_TACOS'
}
}expect(TacoTruck)
.to receive(:take_order)
.with(
hash_including(
discounts: { coupon: 'DISCOUNT_TACOS'}
)
)Last updated