mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 15:50:13 +01:00
45 lines
1.1 KiB
Ruby
45 lines
1.1 KiB
Ruby
Given /this is a pending scenario/ do
|
|
pending
|
|
end
|
|
|
|
Given /^I set the locale to "([^"]*)"$/ do |locale|
|
|
@locale = locale
|
|
end
|
|
|
|
Given /^I am working on the mobile interface$/ do
|
|
@mobile_interface = true
|
|
end
|
|
|
|
Then /the badge should show (.*)/ do |number|
|
|
badge = find("span#badge_count").text.to_i
|
|
badge.should == number.to_i
|
|
end
|
|
|
|
Then /^I should see the empty message in the deferred container$/ do
|
|
wait_for :timeout => 5 do
|
|
selenium.is_visible("xpath=//div[@id='tickler']//div[@id='tickler-empty-nd']")
|
|
end
|
|
end
|
|
|
|
Then /^I should see the empty tickler message$/ do
|
|
wait_for :timeout => 5 do
|
|
selenium.is_visible("xpath=//div[@id='tickler-empty-nd']")
|
|
end
|
|
end
|
|
|
|
Then /^I should not see the empty tickler message$/ do
|
|
wait_for :timeout => 5 do
|
|
!selenium.is_visible("xpath=//div[@id='tickler-empty-nd']")
|
|
end
|
|
end
|
|
|
|
Then /^I should see an error flash message saying "([^"]*)"$/ do |message|
|
|
xpath = "//div[@id='message_holder']/h4[@id='flash']"
|
|
text = response.selenium.get_text("xpath=#{xpath}")
|
|
text.should == message
|
|
end
|
|
|
|
Then /^I should see "([^"]*)" $/ do |text|
|
|
Then "I should see \"#{text}\""
|
|
end
|
|
|