mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:08:56 +08:00
c9dab6fd08
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors. By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
30 lines
864 B
Ruby
30 lines
864 B
Ruby
# frozen_string_literal: true
|
|
|
|
describe TopicParticipantsSummary do
|
|
describe '#summary' do
|
|
let(:summary) { described_class.new(topic, user: topic_creator).summary }
|
|
|
|
let(:topic) do
|
|
Fabricate(:topic,
|
|
user: topic_creator,
|
|
archetype: Archetype::private_message,
|
|
category_id: nil
|
|
)
|
|
end
|
|
|
|
fab!(:topic_creator) { Fabricate(:user) }
|
|
fab!(:user1) { Fabricate(:user) }
|
|
fab!(:user2) { Fabricate(:user) }
|
|
fab!(:user3) { Fabricate(:user) }
|
|
fab!(:user4) { Fabricate(:user) }
|
|
fab!(:user5) { Fabricate(:user) }
|
|
fab!(:user6) { Fabricate(:user) }
|
|
|
|
it "must never contains the user and at most 5 participants" do
|
|
topic.allowed_user_ids = [user1.id, user2.id, user3.id, user4.id, user5.id, user6.id]
|
|
expect(summary.map(&:user)).to eq([user1, user2, user3, user4, user5])
|
|
end
|
|
|
|
end
|
|
end
|