diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 7cf48c9c..52b55af3 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -44,6 +44,11 @@ RSpec.configure do |config| # --seed 1234 config.order = "random" + config.before(:each) do + # include default foodsoft scope in urls, so that *_path works + default_url_options[:foodcoop] = FoodsoftConfig.scope + end + config.include(SessionHelper) end @@ -56,11 +61,3 @@ module Faker end end end - -# include default foodsoft scope in urls, so that *_path works -ActionDispatch::Integration::Runner.class_eval do - undef default_url_options - def default_url_options(options={}) - {foodcoop: FoodsoftConfig.scope}.merge(options) - end -end