aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/pending.rb
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-01-21 14:32:27 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-01-21 14:32:28 -0200
commitc8504b1b56a040fef962f97de4f9038d0888db57 (patch)
tree74bb6038bbd17b16982fae99d19f01983425f70a /activesupport/lib/active_support/testing/pending.rb
parentc05f3b0e4f6c5b2b350828e5e3cf9d0b1146562f (diff)
downloadrails-c8504b1b56a040fef962f97de4f9038d0888db57.tar.gz
rails-c8504b1b56a040fef962f97de4f9038d0888db57.tar.bz2
rails-c8504b1b56a040fef962f97de4f9038d0888db57.zip
Remove ActiveSupport::TestCase#pending, use `skip` instead
Diffstat (limited to 'activesupport/lib/active_support/testing/pending.rb')
-rw-r--r--activesupport/lib/active_support/testing/pending.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/activesupport/lib/active_support/testing/pending.rb b/activesupport/lib/active_support/testing/pending.rb
deleted file mode 100644
index 510f80f32c..0000000000
--- a/activesupport/lib/active_support/testing/pending.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-# Some code from jeremymcanally's "pending"
-# https://github.com/jeremymcanally/pending/tree/master
-
-module ActiveSupport
- module Testing
- module Pending
-
- unless defined?(Spec)
-
- @@pending_cases = []
- @@at_exit = false
-
- def pending(description = "", &block)
- skip(description.blank? ? nil : description)
- end
- end
-
- end
- end
-end