tap/spec/models/order_item_spec.rb

57 lines
1.3 KiB
Ruby
Raw Normal View History

2015-09-07 12:26:07 +00:00
# == Schema Information
#
# Table name: order_items
#
# id :integer not null, primary key
# order_id :integer
# product_id :integer not null
# count :integer default("0")
#
describe OrderItem do
2015-09-04 11:23:51 +00:00
it 'has a valid factory' do
order_item = create :order_item
expect(order_item).to be_valid
end
2015-09-04 11:23:51 +00:00
describe 'validations' do
before :each do
@order_item = create :order_item
end
it 'product should be present' do
@order_item.product = nil
expect(@order_item).to_not be_valid
end
describe 'count' do
it 'should be present' do
@order_item.count = nil
expect(@order_item).to_not be_valid
end
it 'should be positive' do
@order_item.count = -5
expect(@order_item).to_not be_valid
end
end
end
describe 'product stock' do
before :each do
@product = create :product
@count = rand 10
@order_item = build :order_item, product: @product, count: @count
end
it 'should decrement on create' do
2015-09-14 18:55:49 +00:00
expect{ @order_item.save }.to change{ @product.stock }.by(-@count)
2015-09-04 11:23:51 +00:00
end
it 'should increment on cancel' do
@order_item.save
2015-09-14 18:55:49 +00:00
expect{ @order_item.destroy }.to change{ @product.stock }.by(@count)
2015-09-04 11:23:51 +00:00
end
end
end