From 6e7609e01ca80c3773412678ba75f28b89ba06ab Mon Sep 17 00:00:00 2001 From: Amos King Date: Fri, 23 Jan 2009 21:13:13 -0600 Subject: [PATCH] Make have_tag work in rails as well as Merb --- lib/webrat/core/matchers/have_tag.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/webrat/core/matchers/have_tag.rb b/lib/webrat/core/matchers/have_tag.rb index 3f809521..784b8e72 100644 --- a/lib/webrat/core/matchers/have_tag.rb +++ b/lib/webrat/core/matchers/have_tag.rb @@ -68,4 +68,10 @@ def assert_have_no_tag(name, attributes = {}) end end +end + +module Webrat + module Matchers + include Webrat::HaveTagMatcher + end end \ No newline at end of file