require 'rspec/core/formatters/base_text_formatter' module Emoji module RSpec module Formatters class ZenSmilesFormatter < ::RSpec::Core::Formatters::BaseTextFormatter def example_passed(example) super(example) output.print green "\u{1f610} " end def example_failed(example) super(example) output.print red "\u{1f61e} " end def example_pending(example) super(example) output.print yellow "\u{1f614} " end end end end end