Sha256: 5f69c85224a45c99f615a0359dcac0ba6d682794ffcd30de70808f6d39811409
Contents?: true
Size: 601 Bytes
Versions: 9
Compression:
Stored size: 601 Bytes
Contents
module RR module Adapters module TestUnit include RRMethods def self.included(mod) RR::Space.trim_backtrace = true mod.class_eval do alias_method :setup_without_rr, :setup def setup_with_rr setup_without_rr rr_reset end alias_method :setup, :setup_with_rr alias_method :teardown_without_rr, :teardown def teardown_with_rr rr_verify teardown_without_rr end alias_method :teardown, :teardown_with_rr end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems