aboutsummaryrefslogtreecommitdiffstats
path: root/spec/models/blog_comment_spec.rb
diff options
context:
space:
mode:
authorUģis Ozols <ugis.ozolss@gmail.com>2011-07-27 13:46:24 +0300
committerUģis Ozols <ugis.ozolss@gmail.com>2011-07-27 13:46:24 +0300
commit3fa8937b95a4d90000ad1be9c588424052136455 (patch)
tree07e61cd13bd88a76d13c3d759475d67d088d5f6e /spec/models/blog_comment_spec.rb
parente5db679226bac7ef8ddd568c40f52addd52d7a8a (diff)
downloadrefinerycms-blog-3fa8937b95a4d90000ad1be9c588424052136455.tar.gz
refinerycms-blog-3fa8937b95a4d90000ad1be9c588424052136455.tar.bz2
refinerycms-blog-3fa8937b95a4d90000ad1be9c588424052136455.zip
Rails 3.1 - wip.
Diffstat (limited to 'spec/models/blog_comment_spec.rb')
-rw-r--r--spec/models/blog_comment_spec.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/spec/models/blog_comment_spec.rb b/spec/models/blog_comment_spec.rb
deleted file mode 100644
index feb2860..0000000
--- a/spec/models/blog_comment_spec.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-require 'spec_helper'
-Dir[File.expand_path('../../../features/support/factories/*.rb', __FILE__)].each{|factory| require factory}
-
-describe BlogComment do
-
- context "wiring up" do
-
- before(:each) do
- @comment = Factory.create(:blog_comment)
- end
-
- it "saves" do
- @comment.should_not be_nil
- end
-
- it "has a blog post" do
- @comment.post.should_not be_nil
- end
-
- end
-end