DEV: Reduce verbosity in `TopicQuery` spec.

This commit is contained in:
Guo Xiang Tan 2019-05-29 08:32:10 +08:00
parent a93aa5bbce
commit 6cceb72173
1 changed files with 4 additions and 6 deletions

View File

@ -257,14 +257,12 @@ describe TopicQuery do
notification_level: CategoryUser.notification_levels[:muted])
topic_ids = topic_query.list_latest.topics.map(&:id)
expect(topic_ids).not_to include(muted_topic.id)
expect(topic_ids).to include(tagged_topic.id)
expect(topic_ids).to include(untagged_topic.id)
expect(topic_ids).to contain_exactly(tagged_topic.id, untagged_topic.id)
topic_ids = topic_query.list_new.topics.map(&:id)
expect(topic_ids).not_to include(muted_topic.id)
expect(topic_ids).to include(tagged_topic.id)
expect(topic_ids).to include(untagged_topic.id)
expect(topic_ids).to contain_exactly(tagged_topic.id, untagged_topic.id)
end
end