Sha256: 5f3a7e95bc2946353735ee1faae0816e0b984446ddb7cc96e1250b8edeb211a2
Contents?: true
Size: 265 Bytes
Versions: 22
Compression:
Stored size: 265 Bytes
Contents
module MiniTest class TestRunner < Struct.new(:suite, :test, :assertions, :time, :exception) def result case exception when nil then :pass when Skip then :skip when Assertion then :failure else :error end end end end
Version data entries
22 entries across 22 versions & 1 rubygems