Created
April 7, 2010 19:38
-
-
Save ngauthier/359331 to your computer and use it in GitHub Desktop.
This file contains 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
-# render your objects with their dom_id from ActionController::RecordIdentifier | |
-# this means each TR will have an id like "object_47" | |
%table | |
- @objects.each do |obj| | |
%tr{:id => dom_id(obj)} | |
%td= h obj.title | |
%td | |
%li= link_to "Edit", edit_obj_path(obj) |
This file contains 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
# Step for clicking on edit for that row | |
When I follow "Edit" for object "My Object" |
This file contains 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
# Step definition that uses the existing with step restricted to within the dom id | |
When /^I follow "([^\"]*)" for object "([^\"]*)"$/ do |link, object_name| | |
extend ActionController::RecordIdentifier | |
o = Object.find_by_name(object_name) | |
raise "Object not found" unless o | |
When %Q[I follow "#{link}" within "##{dom_id(o)}"] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment