method
assert_no_tag
v3.1.0 -
Show latest stable
-
0 notes -
Class: ActionDispatch::Assertions::TagAssertions
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0 (0)
- 3.0.9 (-2)
- 3.1.0 (0)
- 3.2.1 (0)
- 3.2.8 (0)
- 3.2.13 (0)
- 4.0.2 (-3)
- 4.1.8 (0)
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.0
- 6.1.3.1
- 6.1.7.7
- 7.0.0
- 7.1.3.2
- 7.1.3.4
- What's this?
assert_no_tag(*opts)
public
Identical to assert_tag, but asserts that a matching tag does not exist. (See assert_tag for a full discussion of the syntax.)
Examples
# 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" } }