aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/encrypted_configuration_test.rb
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-10-01 08:55:03 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-10-01 08:55:03 +0900
commit853abf125a4bdd34cc3a8e2e99e33ac67b0798d6 (patch)
treeb9785bed31d45ea943d6fce48cc2da40304960ec /activesupport/test/encrypted_configuration_test.rb
parent1a2a63f1e07253a2e07c09b82cddd00f661523b2 (diff)
downloadrails-853abf125a4bdd34cc3a8e2e99e33ac67b0798d6.tar.gz
rails-853abf125a4bdd34cc3a8e2e99e33ac67b0798d6.tar.bz2
rails-853abf125a4bdd34cc3a8e2e99e33ac67b0798d6.zip
Remove unused `new_credentials_configuration`
`new_credentials_configuration` is no longer used since 081a6ac6f7fd929798481f9ee333fb92b441356c.
Diffstat (limited to 'activesupport/test/encrypted_configuration_test.rb')
-rw-r--r--activesupport/test/encrypted_configuration_test.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/activesupport/test/encrypted_configuration_test.rb b/activesupport/test/encrypted_configuration_test.rb
index 53ea9e393f..471faa8c12 100644
--- a/activesupport/test/encrypted_configuration_test.rb
+++ b/activesupport/test/encrypted_configuration_test.rb
@@ -54,12 +54,4 @@ class EncryptedConfigurationTest < ActiveSupport::TestCase
test "raises key error when accessing config via bang method" do
assert_raise(KeyError) { @credentials.something! }
end
-
- private
- def new_credentials_configuration
- ActiveSupport::EncryptedConfiguration.new \
- config_path: @credentials_config_path,
- key_path: @credentials_key_path,
- env_key: "RAILS_MASTER_KEY"
- end
end