From ff68430077bc534c03dfe9b2fd7faad3b720a433 Mon Sep 17 00:00:00 2001 From: Yehuda Katz Date: Mon, 2 Feb 2009 12:03:35 -0800 Subject: Whoops. --- .../lib/active_support/testing/pending.rb | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 activesupport/lib/active_support/testing/pending.rb (limited to 'activesupport/lib/active_support') diff --git a/activesupport/lib/active_support/testing/pending.rb b/activesupport/lib/active_support/testing/pending.rb new file mode 100644 index 0000000000..9b2ab73dd0 --- /dev/null +++ b/activesupport/lib/active_support/testing/pending.rb @@ -0,0 +1,40 @@ +# Some code from jeremymcanally's "pending" +# http://github.com/jeremymcanally/pending/tree/master + +module ActiveSupport + module Testing + module Pending + + @@pending_cases = [] + @@at_exit = false + + def pending(description = "", &block) + if block_given? + failed = false + + begin + block.call + rescue + failed = true + end + + flunk("<#{description}> did not fail.") unless failed + end + + caller[0] =~ (/(.*):(.*):in `(.*)'/) + @@pending_cases << "#{$3} at #{$1}, line #{$2}" + print "P" + + @@at_exit ||= begin + at_exit do + puts "\nPending Cases:" + @@pending_cases.each do |test_case| + puts test_case + end + end + end + end + + end + end +end \ No newline at end of file -- cgit v1.2.3