Module | ActionDispatch::Assertions::TagAssertions |
In: |
lib/action_dispatch/testing/assertions/tag.rb
|
Pair of assertions to testing elements in the HTML output of the response.
Identical to assert_tag, but asserts that a matching tag does not exist. (See assert_tag for a full discussion of the syntax.)
# Assert that there is not a "div" containing a "p" assert_no_tag :tag => "div", :descendant => { :tag => "p" } # Assert that an unordered list is empty assert_no_tag :tag => "ul", :descendant => { :tag => "li" } # Assert that there is not a "p" tag with between 1 to 3 "img" tags # as immediate children assert_no_tag :tag => "p", :children => { :count => 1..3, :only => { :tag => "img" } }
Asserts that there is a tag/node/element in the body of the response that meets all of the given conditions. The conditions parameter must be a hash of any of the following keys (all are optional):
Conditions are matched using the following algorithm:
# Assert that there is a "span" tag assert_tag :tag => "span" # Assert that there is a "span" tag with id="x" assert_tag :tag => "span", :attributes => { :id => "x" } # Assert that there is a "span" tag using the short-hand assert_tag :span # Assert that there is a "span" tag with id="x" using the short-hand assert_tag :span, :attributes => { :id => "x" } # Assert that there is a "span" inside of a "div" assert_tag :tag => "span", :parent => { :tag => "div" } # Assert that there is a "span" somewhere inside a table assert_tag :tag => "span", :ancestor => { :tag => "table" } # Assert that there is a "span" with at least one "em" child assert_tag :tag => "span", :child => { :tag => "em" } # Assert that there is a "span" containing a (possibly nested) # "strong" tag. assert_tag :tag => "span", :descendant => { :tag => "strong" } # Assert that there is a "span" containing between 2 and 4 "em" tags # as immediate children assert_tag :tag => "span", :children => { :count => 2..4, :only => { :tag => "em" } } # Get funky: assert that there is a "div", with an "ul" ancestor # and an "li" parent (with "class" = "enum"), and containing a # "span" descendant that contains text matching /hello world/ assert_tag :tag => "div", :ancestor => { :tag => "ul" }, :parent => { :tag => "li", :attributes => { :class => "enum" } }, :descendant => { :tag => "span", :child => /hello world/ }
Please note: assert_tag and assert_no_tag only work with well-formed XHTML. They recognize a few tags as implicitly self-closing (like br and hr and such) but will not work correctly with tags that allow optional closing tags (p, li, td). You must explicitly close all of your tags to use these assertions.