cupakromer/emoji-rspec

View on GitHub
lib/emoji_test_love/formatters/smile_dip_formatter.rb

Summary

Maintainability
A
0 mins
Test Coverage
module EmojiTestLove
  class SmileDip
    def passed_display
      "\u{1f36d} "
    end

    def failed_display
      "\u{1f47b} "
    end

    def pending_display
      "\u{1f42c} "
    end

    def names
      ['smile_dip', 'smiledip', 'fundip', 'fun_dip', 'aoshima']
    end
  end
end