Displaying 2 results from an estimated 2 matches for "test_task".
Did you mean:
next_task
2006 Mar 21
2
Capistrano: creating your own tasks
When I create a task within capistrano.rb I can call it using rake.
When I create a task and put it in deploy.rb I can call it. Neither
with or without the remote: namespace.
Anyone have any insight into why it does not work?
John Kopanas
2006 Jul 29
2
Cannot save Date field
Hi,
I have a table which has a column called due_date. Datatype of this
column in
mySQL is "Date". Here is what I extracted from schema.rb
> t.column "due_date", :date
My fixture tasks.yml file has the following line
> due_date: 07/17/2006
My test_task.rb has the following line
> assert_equal "07/17/2006", @task.due_date
When I run the test, it fails. It said
testcreate(TaskTest) [test/unit/task_test.rb:16]
<"07/17/2006"> expected by was
<nil>
Does anyone know why I cannot save the date field?
T...