From 92da512125fb5aeb7d7418c80cdd0ead5aaf30bb Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Sat, 17 Nov 2012 14:24:33 -0200 Subject: Properly deprecate #pending from AS::TestCase Check https://github.com/rails/rails/pull/4575#issuecomment-5765575. --- activesupport/lib/active_support/testing/pending.rb | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'activesupport/lib/active_support/testing/pending.rb') diff --git a/activesupport/lib/active_support/testing/pending.rb b/activesupport/lib/active_support/testing/pending.rb index 510f80f32c..944806bb64 100644 --- a/activesupport/lib/active_support/testing/pending.rb +++ b/activesupport/lib/active_support/testing/pending.rb @@ -1,20 +1,14 @@ -# Some code from jeremymcanally's "pending" -# https://github.com/jeremymcanally/pending/tree/master +require 'active_support/deprecation' module ActiveSupport module Testing module Pending - unless defined?(Spec) - - @@pending_cases = [] - @@at_exit = false - def pending(description = "", &block) + ActiveSupport::Deprecation.warn("#pending is deprecated and will be removed in Rails 4.1, please use #skip instead.") skip(description.blank? ? nil : description) end end - end end end -- cgit v1.2.3