blob: 510f80f32c8d9b9b1a4e87a8aa0fc83082806993 (
plain) (
tree)
|
|
# 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
|