Flowdock
method

assert_no_tag

Importance_1
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: ActionDispatch::Assertions::TagAssertions

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v4.1.8) is shown here.

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.)

# 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" } }
Show source
Register or log in to add new notes.