mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-22 18:20:12 +01:00
Removed superfluous 'tracks' directory at the root of the repository.
Testing commits to github.
This commit is contained in:
parent
6a42901514
commit
4cbf5a34d3
2269 changed files with 0 additions and 0 deletions
|
|
@ -0,0 +1,8 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
click "edit_icon_todo_12"
|
||||
wait_for_visible "context_name_todo_12"
|
||||
type "context_name_todo_12", "someday maybe"
|
||||
click "submit_todo_12"
|
||||
wait_for_element_not_present "todo_12"
|
||||
21
test/selenium/home/change_todo_context_to_new_context.rsel
Normal file
21
test/selenium/home/change_todo_context_to_new_context.rsel
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# when you change a todo to a new context, the new context must show with
|
||||
# the new todo
|
||||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
|
||||
# change context of todo to new context
|
||||
click "edit_icon_todo_12"
|
||||
wait_for_visible "context_name_todo_12"
|
||||
type "context_name_todo_12", "new context"
|
||||
click "submit_todo_12"
|
||||
|
||||
# check that todo is removed from old context
|
||||
wait_for_element_not_present "css=#c1 #todo_12"
|
||||
|
||||
# check if new context is shown and that the todo is also shown
|
||||
wait_for_text_present 'new context'
|
||||
# TODO: this check only looks for todo_12 but does not check if it is contained
|
||||
# within the new context.
|
||||
wait_for_element_not_present "#todo_12"
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
click "edit_icon_todo_12"
|
||||
wait_for_visible "context_name_todo_12"
|
||||
type "context_name_todo_12", "errand"
|
||||
click "submit_todo_12"
|
||||
wait_for_element_not_present "css=#c1 #todo_12"
|
||||
wait_for_visible "c4"
|
||||
wait_for_visible "css=#c4 #todo_12"
|
||||
assert_not_visible "c4empty-nd"
|
||||
8
test/selenium/home/create_first_todo.rsel
Normal file
8
test/selenium/home/create_first_todo.rsel
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
setup :fixtures => :users, :clear_tables => [:projects, :contexts, :todos]
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
assert_context_count_incremented do
|
||||
type "todo_description", "a new action"
|
||||
type "todo_context_name", "Brand new context"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
end
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
# adding a new action to context and collapsing context should remove
|
||||
# all actions in context including the newly added one
|
||||
|
||||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
|
||||
assert_element_present "todo_9"
|
||||
|
||||
# add new action to existing context
|
||||
type "todo_description", "a new action"
|
||||
type "todo_context_name", "Agenda"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
wait_for_visible "flash"
|
||||
|
||||
# toggle Agenda context c1 and wait until the context has collapsed
|
||||
click "css=#toggle_c1"
|
||||
wait_for_not_visible "todo_9"
|
||||
|
||||
# check that newly added action is not there
|
||||
wait_for_not_visible "xpath=//span[text()='a new action']"
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
assert_context_count_incremented do
|
||||
type "todo_description", "tttt"
|
||||
type "todo_project_name", "pppp"
|
||||
type "todo_context_name", "cccc"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
end
|
||||
8
test/selenium/home/create_new_todo_with_new_context.rsel
Normal file
8
test/selenium/home/create_new_todo_with_new_context.rsel
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
assert_context_count_incremented do
|
||||
type "todo_description", "a new action"
|
||||
type "todo_context_name", "Brand new context"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
end
|
||||
31
test/selenium/home/create_todo_in_completed_project.rsel
Normal file
31
test/selenium/home/create_todo_in_completed_project.rsel
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
|
||||
open "/"
|
||||
# we should start with 10 actions on home page
|
||||
assert_text 'badge_count', '10'
|
||||
|
||||
# set project to hidden state
|
||||
open "/projects/2"
|
||||
click 'project_state_completed'
|
||||
# wait for flash before navigating away from project page
|
||||
wait_for_visible "flash"
|
||||
|
||||
# monitor badge count on home page. It should be 7 at the start
|
||||
open "/"
|
||||
wait_for_visible 'badge_count'
|
||||
assert_text 'badge_count', '7'
|
||||
|
||||
# add todo to hidden project
|
||||
type "todo_description", "should be hidden"
|
||||
type "todo_project_name", "Make more money than Billy Gates"
|
||||
type "todo_context_name", "agenda"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
|
||||
# wait for flash to appear
|
||||
wait_for_visible "flash"
|
||||
|
||||
verify_text_not_present 'should be hidden'
|
||||
|
||||
# badge count should still be same
|
||||
assert_text 'badge_count', '7'
|
||||
27
test/selenium/home/create_todo_in_hidden_project.rsel
Normal file
27
test/selenium/home/create_todo_in_hidden_project.rsel
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
|
||||
# set project to hidden state
|
||||
open "/projects/2"
|
||||
click 'project_state_hidden'
|
||||
# wait for flash before navigating away from project page to make sure that
|
||||
# the changes have been saved
|
||||
wait_for_visible "flash"
|
||||
|
||||
# monitor badge count on home page. It should be 7 at the start
|
||||
open "/"
|
||||
assert_text 'badge_count', '7'
|
||||
|
||||
# add todo to hidden project
|
||||
type "todo_description", "should be hidden"
|
||||
type "todo_project_name", "Make more money than Billy Gates"
|
||||
type "todo_context_name", "agenda"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
|
||||
# wait for flash to (dis)appear
|
||||
wait_for_visible "flash"
|
||||
|
||||
verify_text_not_present 'should be hidden'
|
||||
|
||||
# badge count should still be same
|
||||
assert_text 'badge_count', '7'
|
||||
9
test/selenium/home/defer_todo.rsel
Normal file
9
test/selenium/home/defer_todo.rsel
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
click "edit_icon_todo_9"
|
||||
wait_for_element_present "show_from_todo_9"
|
||||
type "show_from_todo_9", "1/1/2030"
|
||||
click "css=#submit_todo_9"
|
||||
wait_for_element_not_present "todo_9"
|
||||
assert_text 'badge_count', '9'
|
||||
5
test/selenium/home/mark_todo_complete_1.rsel
Normal file
5
test/selenium/home/mark_todo_complete_1.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open '/'
|
||||
click "xpath=//div[@id='c1'] //div[@id='todo_9'] //input[@class='item-checkbox']"
|
||||
wait_for_element_present "xpath=//div[@id='completed'] //div[@id='todo_9']"
|
||||
6
test/selenium/home/mark_todo_complete_2.rsel
Normal file
6
test/selenium/home/mark_todo_complete_2.rsel
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open '/'
|
||||
click "xpath=//div[@id='c5'] //div[@id='todo_5'] //input[@class='item-checkbox']"
|
||||
wait_for_element_present "xpath=//div[@id='completed'] //div[@id='todo_5']"
|
||||
wait_for_not_visible 'c5'
|
||||
5
test/selenium/home/mark_todo_complete_3.rsel
Normal file
5
test/selenium/home/mark_todo_complete_3.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'jane'
|
||||
open '/'
|
||||
click_and_wait "xpath=//div[@id='c10'] //div[@id='todo_16'] //input[@class='item-checkbox']"
|
||||
assert_title "TRACKS::Project: Attend RailsConf"
|
||||
6
test/selenium/home/mark_todo_incomplete.rsel
Normal file
6
test/selenium/home/mark_todo_incomplete.rsel
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open '/'
|
||||
click "xpath=//div[@id='completed'] //div[@id='todo_3'] //input[@class='item-checkbox']"
|
||||
wait_for_element_present "xpath=//div[@id='c4'] //div[@id='todo_3']"
|
||||
assert_not_visible "c4empty-nd"
|
||||
5
test/selenium/home/star_todo.rsel
Normal file
5
test/selenium/home/star_todo.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open '/'
|
||||
click "css=#c1 #todo_9 a.star_item"
|
||||
wait_for_element_present "css=#c1 #todo_9 img.starred_todo"
|
||||
4
test/selenium/home/verify_item_not_starred.rsel
Normal file
4
test/selenium/home/verify_item_not_starred.rsel
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open '/'
|
||||
assert_element_present "css=#c2 #todo_2 img.unstarred_todo"
|
||||
Loading…
Add table
Add a link
Reference in a new issue