foodsoft/test/unit/stock_change_test.rb
Benjamin Meichsner da08365816 Fixed bug order.profit calculation.
Order.profit will also be saved, when order is closed.
2009-03-17 19:43:41 +01:00

22 lines
503 B
Ruby

# == Schema Information
# Schema version: 20090317175355
#
# Table name: stock_changes
#
# id :integer not null, primary key
# delivery_id :integer
# order_id :integer
# stock_article_id :integer
# quantity :integer default(0)
# created_at :datetime
# stock_taking_id :integer
#
require 'test_helper'
class StockChangeTest < ActiveSupport::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
end
end