The code powering m.abunchtell.com https://m.abunchtell.com
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

16 строки
313 B

  1. require 'rails_helper'
  2. RSpec.describe Emoji do
  3. describe '#unicode' do
  4. it 'returns a unicode for a shortcode' do
  5. expect(Emoji.instance.unicode(':joy:')).to eq '😂'
  6. end
  7. end
  8. describe '#names' do
  9. it 'returns an array' do
  10. expect(Emoji.instance.names).to be_an Array
  11. end
  12. end
  13. end