mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-18 00:00:12 +01:00
13 lines
568 B
Text
13 lines
568 B
Text
setup :fixtures => [:users, :preferences, :contexts, :projects], :clear_tables => [:todos]
|
|
login :as => 'admin'
|
|
open "/tickler"
|
|
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"
|
|
assert_confirmation "New context \"errands\" will be also created. Are you sure?"
|
|
end
|
|
wait_for_not_visible "tickler-empty-nd"
|
|
wait_for_element_present "css=div.item-container a[title=01/01/2030]"
|