aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/deprecation_test.rb
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2015-01-15 12:12:33 +0530
committerVipul A M <vipulnsward@gmail.com>2015-01-20 22:28:48 +0530
commit166ce95f65cd6b54e23d43e0e61875d6c3a38047 (patch)
tree8ee4222277b604cd39b27b78e8db0b4a5087bb69 /activesupport/test/deprecation_test.rb
parent850159bd2c5e1e108d0256dd05424bbbf7926b59 (diff)
downloadrails-166ce95f65cd6b54e23d43e0e61875d6c3a38047.tar.gz
rails-166ce95f65cd6b54e23d43e0e61875d6c3a38047.tar.bz2
rails-166ce95f65cd6b54e23d43e0e61875d6c3a38047.zip
- Extracted silence_stream method to new module in activesupport/testing.
- Added include for the same in ActiveSupport::Test. - Removed occurrences of silence_stream being used elsewhere. - Reordered activesupport testcase requires alphabetically. - Removed require of silence stream from test_case - Moved quietly method to stream helper - Moved capture output to stream helper module and setup requires for the same elsewhere
Diffstat (limited to 'activesupport/test/deprecation_test.rb')
-rw-r--r--activesupport/test/deprecation_test.rb19
1 files changed, 3 insertions, 16 deletions
diff --git a/activesupport/test/deprecation_test.rb b/activesupport/test/deprecation_test.rb
index 7aff56cbad..20bd8ee5dd 100644
--- a/activesupport/test/deprecation_test.rb
+++ b/activesupport/test/deprecation_test.rb
@@ -1,4 +1,5 @@
require 'abstract_unit'
+require 'active_support/testing/stream'
class Deprecatee
def initialize
@@ -36,6 +37,8 @@ end
class DeprecationTest < ActiveSupport::TestCase
+ include ActiveSupport::Testing::Stream
+
def setup
# Track the last warning.
@old_behavior = ActiveSupport::Deprecation.behavior
@@ -356,20 +359,4 @@ class DeprecationTest < ActiveSupport::TestCase
deprecator
end
- def capture(stream)
- stream = stream.to_s
- captured_stream = Tempfile.new(stream)
- stream_io = eval("$#{stream}")
- origin_stream = stream_io.dup
- stream_io.reopen(captured_stream)
-
- yield
-
- stream_io.rewind
- return captured_stream.read
- ensure
- captured_stream.close
- captured_stream.unlink
- stream_io.reopen(origin_stream)
- end
end