foodsoft/test/unit/financial_transaction_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

23 lines
634 B
Ruby

# == Schema Information
# Schema version: 20090317175355
#
# Table name: financial_transactions
#
# id :integer not null, primary key
# ordergroup_id :integer default(0), not null
# amount :decimal(8, 2) default(0.0), not null
# note :text not null
# user_id :integer default(0), not null
# created_on :datetime not null
#
require File.dirname(__FILE__) + '/../test_helper'
class FinancialTransactionTest < Test::Unit::TestCase
fixtures :financial_transactions
# Replace this with your real tests.
def test_truth
assert true
end
end