discourse/spec/serializers/basic_user_serializer_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

24 lines
677 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
require_dependency 'user'
describe BasicUserSerializer do
describe '#as_json' do
let(:user) { Fabricate.build(:user) }
let(:serializer) { BasicUserSerializer.new(user, scope: Guardian.new(user), root: false) }
let(:json) { serializer.as_json }
it "returns the username" do
expect(json[:username]).to eq(user.username)
expect(json[:name]).to eq(user.name)
expect(json[:avatar_template]).to eq(user.avatar_template)
end
it "doesn't return the name it when `enable_names` is false" do
SiteSetting.enable_names = false
expect(json[:name]).to eq(nil)
end
end
end