You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
582 B
26 lines
582 B
require 'rails_helper'
|
|
|
|
RSpec.describe CustomEmoji, type: :model do
|
|
describe '.from_text' do
|
|
let!(:emojo) { Fabricate(:custom_emoji) }
|
|
|
|
subject { described_class.from_text(text, nil) }
|
|
|
|
context 'with plain text' do
|
|
let(:text) { 'Hello :coolcat:' }
|
|
|
|
it 'returns records used via shortcodes in text' do
|
|
is_expected.to include(emojo)
|
|
end
|
|
end
|
|
|
|
context 'with html' do
|
|
let(:text) { '<p>Hello :coolcat:</p>' }
|
|
|
|
it 'returns records used via shortcodes in text' do
|
|
is_expected.to include(emojo)
|
|
end
|
|
end
|
|
end
|
|
end
|