Files
openfoodnetwork/spec/models/spree/stock_movement_spec.rb
2024-05-09 12:24:41 +10:00

36 lines
931 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Spree::StockMovement do
let(:stock_location) { create(:stock_location_with_items) }
let(:stock_item) { stock_location.stock_items.order(:id).first }
subject { build(:stock_movement, stock_item:) }
it 'should belong to a stock item' do
expect(subject).to respond_to(:stock_item)
end
context "when quantity is negative" do
context "after save" do
it "should decrement the stock item count on hand" do
subject.quantity = -1
subject.save
stock_item.reload
expect(stock_item.count_on_hand).to eq 14
end
end
end
context "when quantity is positive" do
context "after save" do
it "should increment the stock item count on hand" do
subject.quantity = 1
subject.save
stock_item.reload
expect(stock_item.count_on_hand).to eq 16
end
end
end
end