Fix issue with unresolvable usernames
This commit is contained in:
parent
882c94a6bf
commit
039e6f951c
2 changed files with 10 additions and 2 deletions
|
@ -44,6 +44,11 @@ RSpec.describe ApplicationHelper, type: :helper do
|
|||
status.mentions.create(account: alice)
|
||||
expect(helper.linkify(status)).to match('<a href="http://test.host/users/alice" class="mention">@<span>alice</span></a>')
|
||||
end
|
||||
|
||||
it 'leaves mention of unresolvable user alone' do
|
||||
status = Fabricate(:status, text: 'Hello @foo', account: bob)
|
||||
expect(helper.linkify(status)).to match('Hello @foo')
|
||||
end
|
||||
end
|
||||
|
||||
describe '#account_from_mentions' do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue