summaryrefslogtreecommitdiff
path: root/core/test/support/with_config_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'core/test/support/with_config_helper.rb')
-rw-r--r--core/test/support/with_config_helper.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/core/test/support/with_config_helper.rb b/core/test/support/with_config_helper.rb
deleted file mode 100644
index 65eb7bc..0000000
--- a/core/test/support/with_config_helper.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-module WithConfigHelper
- extend ActiveSupport::Concern
-
- def with_config(options)
- old_config = APP_CONFIG.dup
- APP_CONFIG.merge! options
- yield
- ensure
- APP_CONFIG.replace old_config
- end
-
-end
-
-class ActiveSupport::TestCase
- include WithConfigHelper
-end