aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2016-03-07 09:47:26 -0700
committerSean Griffin <sean@seantheprogrammer.com>2016-03-07 09:47:26 -0700
commitb4202fec9f3127bf89ded37c91cab879b452536e (patch)
tree603429de8883e3294e0c3ed1483d9a9f78650977 /railties/test
parent591bbfd1f785fdb27705656b2818020750bb1fa8 (diff)
parent4d6270495d0d0196a78502a46822c5dae35cf652 (diff)
downloadrails-b4202fec9f3127bf89ded37c91cab879b452536e.tar.gz
rails-b4202fec9f3127bf89ded37c91cab879b452536e.tar.bz2
rails-b4202fec9f3127bf89ded37c91cab879b452536e.zip
Merge pull request #23939 from akshaymohite/fix-configuration-tests-semantics
Fixed semantics of couple of tests in the configuration_test.rb [ci skip]
Diffstat (limited to 'railties/test')
-rw-r--r--railties/test/application/configuration_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/application/configuration_test.rb b/railties/test/application/configuration_test.rb
index d03dd1afcc..decc4d138d 100644
--- a/railties/test/application/configuration_test.rb
+++ b/railties/test/application/configuration_test.rb
@@ -1337,7 +1337,7 @@ module ApplicationTests
assert_equal 'custom key', Rails.application.config.my_custom_config['key']
end
- test "config_for use the Pathname object if it is provided" do
+ test "config_for uses the Pathname object if it is provided" do
app_file 'config/custom.yml', <<-RUBY
development:
key: 'custom key'
@@ -1464,7 +1464,7 @@ module ApplicationTests
assert_equal :api, Rails.configuration.debug_exception_response_format
end
- test "debug_exception_response_format can be override" do
+ test "debug_exception_response_format can be overriden" do
add_to_config <<-RUBY
config.api_only = true
RUBY