2007-11-05 05:42:43 +00:00
|
|
|
setup :fixtures => [:users, :preferences, :contexts, :projects], :clear_tables => [:todos]
|
2007-09-10 04:17:01 +00:00
|
|
|
login :as => 'admin'
|
|
|
|
|
open "/tickler"
|
2007-11-05 05:42:43 +00:00
|
|
|
assert_context_count_incremented do
|
|
|
|
|
type "todo_description", "a new action"
|
|
|
|
|
type "todo_context_name", "errands"
|
|
|
|
|
type "todo_project_name", "None"
|
|
|
|
|
type "todo_show_from", "1/1/2030"
|
|
|
|
|
click "css=#todo-form-new-action .submit_box button"
|
2009-02-07 22:26:50 +01:00
|
|
|
assert_confirmation "New context \"errands\" will be also created. Are you sure?"
|
2007-11-05 05:42:43 +00:00
|
|
|
end
|
|
|
|
|
wait_for_not_visible "tickler-empty-nd"
|
2009-11-25 15:45:25 -05:00
|
|
|
wait_for_element_present "css=div.item-container a[title=01/01/2030]"
|