discourse/spec/components/avatar_lookup_spec.rb
Sam Saffron 4ea21fa2d0 DEV: use #frozen_string_literal: true on all spec
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
2019-04-30 10:27:42 +10:00

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