All models initialize

This commit is contained in:
Joe Sak 2010-08-09 10:36:22 -05:00
parent 77546b5b65
commit bca035a31e
3 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,8 @@
require 'spec_helper'
describe BlogPost do
it "initializes" do
blog = BlogPost.new
blog.should_not be_nil
end
end