2011-05-07 20:50:39 +02:00
|
|
|
require File.dirname(__FILE__) + '/../test_helper'
|
|
|
|
|
|
|
|
class TaskTest < Test::Unit::TestCase
|
|
|
|
fixtures :tasks
|
|
|
|
|
|
|
|
# Replace this with your real tests.
|
|
|
|
def test_truth
|
|
|
|
assert true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-03-17 19:43:41 +01:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: tasks
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# name :string(255) default(""), not null
|
|
|
|
# description :string(255)
|
|
|
|
# due_date :date
|
2011-05-07 20:50:39 +02:00
|
|
|
# done :boolean default(FALSE)
|
2009-03-17 19:43:41 +01:00
|
|
|
# workgroup_id :integer
|
2011-05-07 20:50:39 +02:00
|
|
|
# assigned :boolean default(FALSE)
|
2009-03-17 19:43:41 +01:00
|
|
|
# created_on :datetime not null
|
|
|
|
# updated_on :datetime not null
|
|
|
|
# required_users :integer default(1)
|
2011-05-07 20:50:39 +02:00
|
|
|
# weekly :boolean
|
|
|
|
# duration :integer
|
2009-03-17 19:43:41 +01:00
|
|
|
#
|
|
|
|
|