mirror of
https://github.com/discourse/discourse.git
synced 2024-12-05 03:23:41 +08:00
4ea21fa2d0
This change both speeds up specs (less strings to allocate) and helps catch cases where methods in Discourse are mutating inputs. Overall we will be migrating everything to use #frozen_string_literal: true it will take a while, but this is the first and safest move in this direction
31 lines
780 B
Ruby
31 lines
780 B
Ruby
# encoding: utf-8
|
|
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
require_dependency 'avatar_lookup'
|
|
|
|
describe AvatarLookup do
|
|
let!(:user) { Fabricate(:user, username: "john_doe", name: "John Doe") }
|
|
|
|
describe '#[]' do
|
|
before do
|
|
@avatar_lookup = AvatarLookup.new([user.id, nil])
|
|
end
|
|
|
|
it 'returns nil if user_id does not exists' do
|
|
expect(@avatar_lookup[0]).to eq(nil)
|
|
end
|
|
|
|
it 'returns nil if user_id is nil' do
|
|
expect(@avatar_lookup[nil]).to eq(nil)
|
|
end
|
|
|
|
it 'returns user if user_id exists' do
|
|
avatar_lookup_user = @avatar_lookup[user.id]
|
|
expect(avatar_lookup_user).to eq(user)
|
|
expect(avatar_lookup_user.username).to eq("john_doe")
|
|
expect(avatar_lookup_user.name).to eq("John Doe")
|
|
end
|
|
end
|
|
end
|