class Tryouts::CLI::VerboseFormatter
def show_string_diff(expected, actual)
def show_string_diff(expected, actual) return if expected == actual puts indent_text('Difference:', 4) puts indent_text("- #{Console.color(:red, actual)}", 5) puts indent_text("+ #{Console.color(:green, expected)}", 5) end