mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
3e50313fdc
Since rspec-rails 3, the default installation creates two helper files: * `spec_helper.rb` * `rails_helper.rb` `spec_helper.rb` is intended as a way of running specs that do not require Rails, whereas `rails_helper.rb` loads Rails (as Discourse's current `spec_helper.rb` does). For more information: https://www.relishapp.com/rspec/rspec-rails/docs/upgrade#default-helper-files In this commit, I've simply replaced all instances of `spec_helper` with `rails_helper`, and renamed the original `spec_helper.rb`. This brings the Discourse project closer to the standard usage of RSpec in a Rails app. At present, every spec relies on loading Rails, but there are likely many that don't need to. In a future pull request, I hope to introduce a separate, minimal `spec_helper.rb` which can be used in tests which don't rely on Rails.
32 lines
1.3 KiB
Ruby
32 lines
1.3 KiB
Ruby
require 'rails_helper'
|
|
require_dependency 'category'
|
|
|
|
describe CategoryDetailedSerializer do
|
|
|
|
describe "counts" do
|
|
it "works for categories with no subcategories" do
|
|
no_subcats = Fabricate(:category, topics_year: 10, topics_month: 5, topics_day: 2, posts_year: 13, posts_month: 7, posts_day: 3)
|
|
json = CategoryDetailedSerializer.new(no_subcats, scope: Guardian.new, root: false).as_json
|
|
expect(json[:topics_year]).to eq(10)
|
|
expect(json[:topics_month]).to eq(5)
|
|
expect(json[:topics_day]).to eq(2)
|
|
expect(json[:posts_year]).to eq(13)
|
|
expect(json[:posts_month]).to eq(7)
|
|
expect(json[:posts_day]).to eq(3)
|
|
end
|
|
|
|
it "includes counts from subcategories" do
|
|
parent = Fabricate(:category, topics_year: 10, topics_month: 5, topics_day: 2, posts_year: 13, posts_month: 7, posts_day: 3)
|
|
subcategory = Fabricate(:category, parent_category_id: parent.id, topics_year: 1, topics_month: 1, topics_day: 1, posts_year: 1, posts_month: 1, posts_day: 1)
|
|
json = CategoryDetailedSerializer.new(parent, scope: Guardian.new, root: false).as_json
|
|
expect(json[:topics_year]).to eq(11)
|
|
expect(json[:topics_month]).to eq(6)
|
|
expect(json[:topics_day]).to eq(3)
|
|
expect(json[:posts_year]).to eq(14)
|
|
expect(json[:posts_month]).to eq(8)
|
|
expect(json[:posts_day]).to eq(4)
|
|
end
|
|
end
|
|
|
|
end
|