discourse/spec/models/category_featured_topic_spec.rb
Sam 9a57aaaaa9 fix encoding for category excerpt
fix missing secure category topics in categories page
2013-06-05 11:22:47 +10:00

28 lines
640 B
Ruby

require 'spec_helper'
describe CategoryFeaturedTopic do
it { should belong_to :category }
it { should belong_to :topic }
it "should feature topics for a secure category" do
# so much dancing, I am thinking fixures make sense here.
user = Fabricate(:user)
user.change_trust_level!(:basic)
category = Fabricate(:category)
category.deny(:all)
category.allow(Group[:trust_level_1])
category.save
post = PostCreator.create(user, raw: "this is my new post 123 post", title: "hello world")
CategoryFeaturedTopic.feature_topics_for(category)
CategoryFeaturedTopic.count.should == 1
end
end