Hi, my name is...

This commit is contained in:
Philip Arndt 2011-03-02 16:05:31 +13:00
parent 6db3f44398
commit 4e73a81ccd
2 changed files with 14 additions and 14 deletions

View file

@ -1,18 +1,18 @@
## 1.2 [01 March 2011] ## 1.2 [01 March 2011]
* Posts can be authored [joemsak] * Posts can be authored [joemsak](https://github.com/joemsak)
* Front-end pagination [joemsak] * Front-end pagination [joemsak](https://github.com/joemsak)
* Archives start grouping by year after 2 years [joemsak] * Archives start grouping by year after 2 years [joemsak](https://github.com/joemsak)
* Removed ajax blog post navigation [joemsak] * Removed ajax blog post navigation [joemsak](https://github.com/joemsak)
* Administrate uncategorized posts [joemsak] * Administrate uncategorized posts [joemsak](https://github.com/joemsak)
* Categories in has_many :through relationship [joemsak] * Categories in has_many :through relationship [joemsak](https://github.com/joemsak)
* General bug fixing & test coverage [pardnt] [joemsak] * General bug fixing & test coverage [parndt](https://github.com/parndt) [joemsak](https://github.com/joemsak)
* Russian translation [iband] * Russian translation [iband](https://github.com/iband)
* French translation [AdrienGiboire] * French translation [AdrienGiboire](https://github.com/AdrienGiboire)
* Polish translation [murbanski] * Polish translation [murbanski](https://github.com/murbanski)
* German translation [gern] * German translation [gern](https://github.com/gern)
* Spanish translation help [xavib] * Spanish translation help [xavib](https://github.com/xavib)
* Rails 3 cleanup & optimization [ugisozols] * Rails 3 cleanup & optimization [ugisozols](https://github.com/ugisozols)
* [See full list](https://github.com/resolve/refinerycms-blog/compare/1.1...1.2) * [See full list](https://github.com/resolve/refinerycms-blog/compare/1.1...1.2)

View file

@ -25,7 +25,7 @@ describe BlogCategory do
it "returns posts by published_at date in descending order" do it "returns posts by published_at date in descending order" do
@category = BlogCategory.create!(@attr) @category = BlogCategory.create!(@attr)
@first_post = @category.posts.create!({ :title => "Breaking News: Joe Sak is hot stuff you guys!!", :body => "True story.", :published_at => Time.now.yesterday }) @first_post = @category.posts.create!({ :title => "Breaking News: Joe Sak is hot stuff you guys!!", :body => "True story.", :published_at => Time.now.yesterday })
@latest_post = @category.posts.create!({ :title => "pardnt is p. okay", :body => "For a kiwi.", :published_at => Time.now }) @latest_post = @category.posts.create!({ :title => "parndt is p. okay", :body => "For a kiwi.", :published_at => Time.now })
@category.posts.first.should == @latest_post @category.posts.first.should == @latest_post
end end