aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/json
diff options
context:
space:
mode:
authorAndrew White <andrew.white@unboxed.co>2017-02-22 13:25:44 +0000
committerAndrew White <andrew.white@unboxed.co>2017-02-22 13:25:44 +0000
commitac1862972cd221ef06900f0f973e5160dbd63979 (patch)
treee2ce3a89c9e0a62ceadc2fd777608b558b123f60 /activesupport/test/json
parent240e32bbbfb6943ac8d7f3fc4d6a6f685930d9ca (diff)
downloadrails-ac1862972cd221ef06900f0f973e5160dbd63979.tar.gz
rails-ac1862972cd221ef06900f0f973e5160dbd63979.tar.bz2
rails-ac1862972cd221ef06900f0f973e5160dbd63979.zip
Add missing requires
Bundler 1.14.5 moved to lazily loading 'rubygems/spec_fetcher' which revealed some missing requires from the JSON encoding test file.
Diffstat (limited to 'activesupport/test/json')
-rw-r--r--activesupport/test/json/encoding_test_cases.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activesupport/test/json/encoding_test_cases.rb b/activesupport/test/json/encoding_test_cases.rb
index b2f0cf3048..7e4775cec8 100644
--- a/activesupport/test/json/encoding_test_cases.rb
+++ b/activesupport/test/json/encoding_test_cases.rb
@@ -1,4 +1,8 @@
require "bigdecimal"
+require "date"
+require "time"
+require "pathname"
+require "uri"
module JSONTest
class Foo