Skip to content

Commit

Permalink
Merge pull request #79 from strzalek/patch-1
Browse files Browse the repository at this point in the history
Dot reporter passed tests use '.', skipped test use 'S'.
  • Loading branch information
trans committed Mar 2, 2012
2 parents fa14ed3 + 687f755 commit d57b361
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/turn/reporters/dot_reporter.rb
Expand Up @@ -19,7 +19,7 @@ def start_test(test)
end

def pass(message=nil)
io.print Colorize.pass('S'); io.flush
io.print Colorize.pass('.'); io.flush
end

def fail(assertion, message=nil)
Expand All @@ -31,7 +31,7 @@ def error(exception, message=nil)
end

def skip(exception, message=nil)
io.print Colorize.skip('-'); io.flush
io.print Colorize.skip('S'); io.flush
end

def finish_test(test)
Expand Down

0 comments on commit d57b361

Please sign in to comment.