mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-08 02:08:50 +01:00
add cucumber scenarios for new preferences
This commit is contained in:
parent
555311b681
commit
40a7cc2d3a
9 changed files with 70 additions and 11 deletions
|
|
@ -25,10 +25,14 @@ When /^my session expires$/ do
|
|||
# use expire_session to force expiry of session
|
||||
js = '$.ajax({type: "GET", url: "/login/expire_session", dataType: "script", async: false});'
|
||||
selenium.run_script(js);
|
||||
|
||||
|
||||
# force check of expiry bypassing timeout
|
||||
js = '$.ajax({type: "GET", url: "/login/check_expiry", dataType: "script", async: false});'
|
||||
selenium.run_script(js);
|
||||
|
||||
sleep(2)
|
||||
end
|
||||
|
||||
When /^I log out of Tracks$/ do
|
||||
When "I go to the logout page"
|
||||
end
|
||||
|
|
|
|||
15
features/step_definitions/preferences_steps.rb
Normal file
15
features/step_definitions/preferences_steps.rb
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
When /^I edit my last name to "([^"]*)"$/ do |last_name|
|
||||
fill_in "user[last_name]", :with => last_name
|
||||
click_button "prefs_submit"
|
||||
end
|
||||
|
||||
When /^I set the password and confirmation to "([^"]*)"$/ do |new_password|
|
||||
When "I set the password to \"#{new_password}\" and confirmation to \"#{new_password}\""
|
||||
end
|
||||
|
||||
When /^I set the password to "([^"]*)" and confirmation to "([^"]*)"$/ do |new_password, new_password_confirmation|
|
||||
fill_in "user[password]", :with => new_password
|
||||
fill_in "user[password_confirmation]", :with => new_password_confirmation
|
||||
click_button "prefs_submit"
|
||||
end
|
||||
|
||||
|
|
@ -2,7 +2,7 @@ Given /^the following user records?$/ do |table|
|
|||
User.delete_all
|
||||
table.hashes.each do |hash|
|
||||
user = Factory(:user, hash)
|
||||
user.create_preference
|
||||
user.create_preference({:locale => 'en'})
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue