Prefabricated anonymous

This commit is contained in:
Daniel Waterworth 2019-04-30 18:14:49 +01:00 committed by Robin Ward
parent 033d584275
commit d3a59a43a1

View File

@ -11,6 +11,7 @@ describe TopicView do
fab!(:topic) { Fabricate(:topic) }
fab!(:evil_trout) { Fabricate(:evil_trout) }
fab!(:first_poster) { topic.user }
fab!(:anonymous) { Fabricate(:anonymous) }
let(:topic_view) { TopicView.new(topic.id, evil_trout) }
@ -57,7 +58,6 @@ describe TopicView do
end
describe "when an anonymous user made a post" do
let(:anonymous) { Fabricate(:anonymous) }
let!(:post4) { Fabricate(:post, topic: topic, user: anonymous) }
it "filters out ignored user posts only" do
@ -67,7 +67,6 @@ describe TopicView do
end
describe "when an anonymous (non signed-in) user is viewing a Topic" do
let(:anonymous) { Fabricate(:anonymous) }
let!(:post4) { Fabricate(:post, topic: topic, user: anonymous) }
it "filters out ignored user posts only" do