Skip to content

Instantly share code, notes, and snippets.

@Nitrodist
Created May 29, 2012 13:12
Show Gist options
  • Save Nitrodist/2828308 to your computer and use it in GitHub Desktop.
Save Nitrodist/2828308 to your computer and use it in GitHub Desktop.
class Test::Unit::Failure
@@failure_count = -1
def single_character_display
@@failure_count = @@failure_count + 1
case @@failure_count % 4
when 0
'F'
when 1
'U'
when 2
'C'
when 3
'K'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment