foodsoft/test/unit/group_order_article_quantit...

22 lines
602 B
Ruby
Raw Normal View History

# == Schema Information
#
# Table name: group_order_article_quantities
#
# id :integer not null, primary key
# group_order_article_id :integer default(0), not null
# quantity :integer default(0)
# tolerance :integer default(0)
# created_on :datetime not null
#
2009-01-06 11:49:19 +01:00
require File.dirname(__FILE__) + '/../test_helper'
class GroupOrderArticleQuantityTest < Test::Unit::TestCase
fixtures :group_order_article_quantities
# Replace this with your real tests.
def test_truth
assert true
end
end