2010/1/26 Vincent P <ease...@gmail.com>:
> How can I test that a view does not display a particular string any
> where?
>
> E.g., the particular string is "I should not be here".  In my
> controller test, I have:
>
> assert_select "div", /I should not be here/, false

assert_select "div", {:text => /I should not be here/, :count => 0}

Just use "body" to check the whole view

Colin

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to