class RSpec::Core::Formatters::LennyFormatter

Public Instance Methods

example_failed(_notification) click to toggle source
# File lib/rspec/core/formatters/lenny_formatter.rb, line 17
def example_failed(_notification)
  output.print ConsoleCodes.wrap('(╯°□°)╯︵ ┻━┻', :failure)
end
example_passed(_notification) click to toggle source
# File lib/rspec/core/formatters/lenny_formatter.rb, line 9
def example_passed(_notification)
  output.print ConsoleCodes.wrap('( ͡° ͜ʖ ͡°)', :success)
end
example_pending(_notification) click to toggle source
# File lib/rspec/core/formatters/lenny_formatter.rb, line 13
def example_pending(_notification)
  output.print ConsoleCodes.wrap('( ‾ʖ̫‾)', :pending)
end
start_dump(_notification) click to toggle source
# File lib/rspec/core/formatters/lenny_formatter.rb, line 21
def start_dump(_notification)
  output.puts
end