add simple support for accessing have_tag, have_selector and have_xpath matchers from rspec proper
This commit is contained in:
parent
82c6be380e
commit
032a016564
|
@ -0,0 +1,13 @@
|
||||||
|
# Supports using the matchers in controller, helper, and view specs if you're
|
||||||
|
# using rspec-rails. Just add a require statement to spec/spec_helper.rb:
|
||||||
|
#
|
||||||
|
# require 'webrat/rspec-rails'
|
||||||
|
#
|
||||||
|
require "webrat/core/matchers"
|
||||||
|
|
||||||
|
Spec::Runner.configure do |config|
|
||||||
|
# rspec should support :type => [:controller, :helper, :view] - but until it does ...
|
||||||
|
config.include(Webrat::Matchers, :type => :controller)
|
||||||
|
config.include(Webrat::Matchers, :type => :helper)
|
||||||
|
config.include(Webrat::Matchers, :type => :view)
|
||||||
|
end
|
Loading…
Reference in New Issue