Created
May 26, 2009 23:36
-
-
Save croaky/118359 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Scenario: Viewing events atom feed | |
Given a future special event exists with a title of "Barcamp Boston" | |
Given a future recurring event exists with a title of "Hackfest" | |
When I go to events.atom | |
Then I should see an entry for "Barcamp Boston" | |
And I should see an entry for "Hackfest" | |
Then /^I should not see an entry for for "(.*)"$/ do |title| | |
assert_select 'events event title', :text => title, :count => 0 | |
end | |
Then /^I should see an entry for for "(.*)"$/ do |title| | |
assert_select 'events event title', title | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment