module RSpec::Rails::FeatureExampleGroup
Container module for routing spec functionality.
Constants
- DEFAULT_HOST
Default host to be used in Rails route helpers if none is specified.
Public Instance Methods
visit(*)
click to toggle source
Shim to check for presence of Capybara. Will delegate if present, raise if not. We assume here that in most cases `visit` will be the first Capybara method called in a spec.
Calls superclass method
# File lib/rspec/rails/example/feature_example_group.rb, line 26 def visit(*) if defined?(super) super else raise "Capybara not loaded, please add it to your Gemfile:\n\ngem \"capybara\"" end end