Module Webrat::HaveTagMatcher

  1. lib/webrat/core/matchers/have_tag.rb (view online)

Public instance methods

assert_have_no_tag (*args, &block)
[show 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)
[show 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)
[show source]
# File lib/webrat/core/matchers/have_tag.rb, line 6
    def have_tag(*args, &block)
      have_selector(*args, &block)
    end
match_tag (*args, &block)

Alias for have_tag