aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-10-01 10:19:38 +0900
committerGitHub <noreply@github.com>2017-10-01 10:19:38 +0900
commit9b12742b2d8b0035779d4c5cd7292df06fd759a7 (patch)
treeb9785bed31d45ea943d6fce48cc2da40304960ec
parent1a2a63f1e07253a2e07c09b82cddd00f661523b2 (diff)
parent853abf125a4bdd34cc3a8e2e99e33ac67b0798d6 (diff)
downloadrails-9b12742b2d8b0035779d4c5cd7292df06fd759a7.tar.gz
rails-9b12742b2d8b0035779d4c5cd7292df06fd759a7.tar.bz2
rails-9b12742b2d8b0035779d4c5cd7292df06fd759a7.zip
Merge pull request #30763 from y-yagi/remove_unused_method
Remove unused `new_credentials_configuration`
-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