This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-02-22 07:00:20 -08:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2016-02-29 10:42:08 -08:00
|
|
|
RSpec.describe StreamEntriesHelper, type: :helper do
|
2016-02-28 05:26:26 -08:00
|
|
|
describe '#display_name' do
|
2017-04-09 08:11:37 -07: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 05:26:26 -08:00
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|