diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-10-01 08:55:03 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-10-01 08:55:03 +0900 |
commit | 853abf125a4bdd34cc3a8e2e99e33ac67b0798d6 (patch) | |
tree | b9785bed31d45ea943d6fce48cc2da40304960ec | |
parent | 1a2a63f1e07253a2e07c09b82cddd00f661523b2 (diff) | |
download | rails-853abf125a4bdd34cc3a8e2e99e33ac67b0798d6.tar.gz rails-853abf125a4bdd34cc3a8e2e99e33ac67b0798d6.tar.bz2 rails-853abf125a4bdd34cc3a8e2e99e33ac67b0798d6.zip |
Remove unused `new_credentials_configuration`
`new_credentials_configuration` is no longer used since 081a6ac6f7fd929798481f9ee333fb92b441356c.
-rw-r--r-- | activesupport/test/encrypted_configuration_test.rb | 8 |
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 |