aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/pending.rb
diff options
context:
space:
mode:
authorCarlos Duclos <darkzeratul64@gmail.com>2012-12-01 13:00:12 -0500
committerCarlos Duclos <darkzeratul64@gmail.com>2012-12-01 13:00:41 -0500
commitabefe32baaa5385e5cfc55d03ef294ab68bc001b (patch)
tree93a29378fd088008bbe34d157acfe0e44bf21709 /activesupport/lib/active_support/testing/pending.rb
parente166f02b177569f9750310b3b132edbf2ab6a841 (diff)
downloadrails-abefe32baaa5385e5cfc55d03ef294ab68bc001b.tar.gz
rails-abefe32baaa5385e5cfc55d03ef294ab68bc001b.tar.bz2
rails-abefe32baaa5385e5cfc55d03ef294ab68bc001b.zip
nodoc AS::Testing::Pending because is deprecated [ci skip]
Diffstat (limited to 'activesupport/lib/active_support/testing/pending.rb')
-rw-r--r--activesupport/lib/active_support/testing/pending.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/testing/pending.rb b/activesupport/lib/active_support/testing/pending.rb
index 944806bb64..b04bbbbaea 100644
--- a/activesupport/lib/active_support/testing/pending.rb
+++ b/activesupport/lib/active_support/testing/pending.rb
@@ -2,8 +2,8 @@ require 'active_support/deprecation'
module ActiveSupport
module Testing
- module Pending
- unless defined?(Spec)
+ module Pending # :nodoc:
+ unless defined?(Spec)
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)