aboutsummaryrefslogtreecommitdiffstats
path: root/spec/models/refinery/blog_category_spec.rb
blob: 704b6bbed6b2c9a20dfed5bbe2e31519f3f87713 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
require 'spec_helper'

module Refinery
  describe BlogCategory do
    before(:each) do
      @blog_category = FactoryGirl.create(:blog_category)
    end

    describe "validations" do
      it "requires title" do
        FactoryGirl.build(:blog_category, :title => "").should_not be_valid
      end

      it "won't allow duplicate titles" do
        FactoryGirl.build(:blog_category, :title => @blog_category.title).should_not be_valid
      end
    end

    describe "blog posts association" do
      it "has a posts attribute" do
        @blog_category.should respond_to(:posts)
      end

      it "returns posts by published_at date in descending order" do
        first_post = @blog_category.posts.create!({ :title => "Breaking News: Joe Sak is hot stuff you guys!!", :body => "True story.", :published_at => Time.now.yesterday })
        latest_post = @blog_category.posts.create!({ :title => "parndt is p. okay", :body => "For a Kiwi.", :published_at => Time.now })

        @blog_category.posts.first.should == latest_post
      end

    end

    describe "#post_count" do
      it "returns post count in category" do
        2.times do
          @blog_category.posts << FactoryGirl.create(:blog_post)
        end
        @blog_category.post_count.should == 2
      end
    end
  end
end