foodsoft/test/unit/assignment_test.rb

21 lines
432 B
Ruby
Raw Normal View History

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