Sha256: e5282e1ae341917eb2c0149b22293c9eb74b103406c8ef7c0c5b1093dc10f939
Contents?: true
Size: 501 Bytes
Versions: 26
Compression:
Stored size: 501 Bytes
Contents
module XCPretty class RSpec < Formatter FAIL = "F" PASS = "." PENDING = "P" MEASURING = 'T' def optional_newline '' end def format_passing_test(suite, test_case, time) green(PASS) end def format_failing_test(test_suite, test_case, reason, file) red(FAIL) end def format_pending_test(suite, test_case) yellow(PENDING) end def format_measuring_test(suite, test_case, time) yellow(MEASURING) end end end
Version data entries
26 entries across 26 versions & 3 rubygems