discourse/spec/models/category_featured_user_spec.rb

27 lines
493 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require 'spec_helper'
describe CategoryFeaturedUser do
2013-02-25 11:42:20 -05:00
2013-02-05 14:16:51 -05:00
it { should belong_to :category }
it { should belong_to :user }
context 'featuring users' do
before do
@category = Fabricate(:category)
CategoryFeaturedUser.feature_users_in(@category)
end
it 'has a featured user' do
CategoryFeaturedUser.count.should_not == 0
end
it 'returns the user via the category association' do
@category.featured_users.should be_present
end
end
end