This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-02-22 16:00:20 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2016-02-29 19:42:08 +01:00
|
|
|
RSpec.describe StreamEntriesHelper, type: :helper do
|
2016-02-28 14:26:26 +01:00
|
|
|
describe '#display_name' do
|
2017-04-09 17:11:37 +02:00
|
|
|
it 'uses the display name when it exists' do
|
|
|
|
account = Account.new(display_name: "Display", username: "Username")
|
|
|
|
|
|
|
|
expect(helper.display_name(account)).to eq "Display"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'uses the username when display name is nil' do
|
|
|
|
account = Account.new(display_name: nil, username: "Username")
|
|
|
|
|
|
|
|
expect(helper.display_name(account)).to eq "Username"
|
|
|
|
end
|
2016-02-28 14:26:26 +01:00
|
|
|
end
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|