Sha256: 511d16b03696cda6a411aa8c899199dffe8280d83b4b17e9aec9c1f721c0e972
Contents?: true
Size: 385 Bytes
Versions: 45
Compression:
Stored size: 385 Bytes
Contents
module RSpec module Core # If Test::Unit is loaed, we'll use its error as baseclass, so that Test::Unit # will report unmet RSpec expectations as failures rather than errors. superclass = ['Test::Unit::AssertionFailedError', '::StandardError'].map do |c| eval(c) rescue nil end.compact.first class PendingExampleFixedError < superclass end end end
Version data entries
45 entries across 45 versions & 4 rubygems