1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add missing require for String#strip_heredoc

This method is being used in `#xml_http_request`, but was not properly
required. This causes `NoMethodError` on projects that are doing
integration test.
This commit is contained in:
Prem Sichanugrist 2015-04-17 15:21:18 -04:00
parent 1881a7715d
commit 3a20e83795

View file

@ -2,6 +2,7 @@ require 'stringio'
require 'uri'
require 'active_support/core_ext/kernel/singleton_class'
require 'active_support/core_ext/object/try'
require 'active_support/core_ext/string/strip'
require 'rack/test'
require 'minitest'