rb/spec/regex_spec.rb [47:58]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      entities = Twitter::TwitterText::Extractor.extract_emoji_with_indices(input)
      entities.each_with_index do |entity, i|
        expect(entity[:emoji]).to be_kind_of(String)
        expect(entity[:indices]).to be_kind_of(Array)
        entity[:indices].each do |position|
          expect(position).to be_kind_of(Integer)
        end
        expect(entity[:emoji]).to be == expected[i]
        expect(Twitter::TwitterText::Extractor.is_valid_emoji(entity[:emoji])).to be true
      end
    end
  end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



rb/spec/regex_spec.rb [64:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      entities = Twitter::TwitterText::Extractor.extract_emoji_with_indices(input)
      entities.each_with_index do |entity, i|
        expect(entity[:emoji]).to be_kind_of(String)
        expect(entity[:indices]).to be_kind_of(Array)
        entity[:indices].each do |position|
          expect(position).to be_kind_of(Integer)
        end
        expect(entity[:emoji]).to be == expected[i]
        expect(Twitter::TwitterText::Extractor.is_valid_emoji(entity[:emoji])).to be true
      end
    end
  end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



