class RSpec::Core::Configuration
Monkey patch rspec to block capybara from using feature
Public Instance Methods
alias_example_group_to(new_name, *args)
click to toggle source
# File lib/rspec/core/example_group_patch.rb, line 10 def alias_example_group_to(new_name, *args) return if [:feature, :xfeature, :ffeature].include?(new_name) orig_alias_example_group_to(new_name, *args) end
Also aliased as: orig_alias_example_group_to