module Webrat::HaveTagMatcher
Public Instance Methods
assert_have_no_tag(*args, &block)
click to toggle source
# File lib/webrat/core/matchers/have_tag.rb, line 16 def assert_have_no_tag(*args, &block) assert_have_no_selector(*args, &block) end
assert_have_tag(*args, &block)
click to toggle source
# File lib/webrat/core/matchers/have_tag.rb, line 12 def assert_have_tag(*args, &block) assert_have_selector(*args, &block) end
have_tag(*args, &block)
click to toggle source
# File lib/webrat/core/matchers/have_tag.rb, line 6 def have_tag(*args, &block) have_selector(*args, &block) end
Also aliased as: match_tag