mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
b3d769ff4f
update rspec syntax to v3 change syntax to rspec v3 oops. fix typo mailers classes with rspec3 syntax helpers with rspec3 syntax jobs with rspec3 syntax serializers with rspec3 syntax views with rspec3 syntax support to rspec3 syntax category spec with rspec3 syntax
25 lines
696 B
Ruby
25 lines
696 B
Ruby
require 'spec_helper'
|
|
require_dependency 'post'
|
|
require_dependency 'user'
|
|
|
|
describe BasicPostSerializer do
|
|
|
|
context "name" do
|
|
let(:user) { Fabricate.build(:user) }
|
|
let(:post) { Fabricate.build(:post, user: user) }
|
|
let(:serializer) { BasicPostSerializer.new(post, scope: Guardian.new, root: false) }
|
|
let(:json) { serializer.as_json }
|
|
|
|
it "returns the name it when `enable_names` is true" do
|
|
SiteSetting.stubs(:enable_names?).returns(true)
|
|
expect(json[:name]).to be_present
|
|
end
|
|
|
|
it "doesn't return the name it when `enable_names` is false" do
|
|
SiteSetting.stubs(:enable_names?).returns(false)
|
|
expect(json[:name]).to be_blank
|
|
end
|
|
|
|
end
|
|
|
|
end
|