Andrew Premdas wrote:

> 
> When /^I follow view (\w+) details link$/ do |object|
>   click_link "#{object}_details}"
> end

I think the problem is that you have an extra } in the title of the link 
you are looking for. It should just be:

When /^I follow view (\w+) details link$/ do |object|
  click_link "#{object}_details"
end

Does this solve your problem?
Balint
-- 
Posted via http://www.ruby-forum.com/.
_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to