From 3abf537eaaff430cfb41fa51a8a377ce4b8ac924 Mon Sep 17 00:00:00 2001 From: Pete Higgins Date: Tue, 24 Jan 2012 14:42:54 -0800 Subject: Fix comment posting. --- spec/requests/refinery/blog/posts_spec.rb | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'spec') diff --git a/spec/requests/refinery/blog/posts_spec.rb b/spec/requests/refinery/blog/posts_spec.rb index 71a90f7..471a460 100644 --- a/spec/requests/refinery/blog/posts_spec.rb +++ b/spec/requests/refinery/blog/posts_spec.rb @@ -77,6 +77,30 @@ module Refinery page.should_not have_content(blog_comment.body) end end + + context "when posting comments" do + let(:blog_post) { Factory(:blog_post) } + let(:name) { "pete" } + let(:email) { "pete@mcawesome.com" } + let(:body) { "Witty comment." } + + before do + visit refinery_blog_post_path(blog_post) + + fill_in "Name", :with => name + fill_in "Email", :with => email + fill_in "Message", :with => body + click_button "Send comment" + end + + it "creates the comment" do + comment = blog_post.reload.comments.last + + comment.name.should eq(name) + comment.email.should eq(email) + comment.body.should eq(body) + end + end end describe "#show draft preview" do -- cgit v1.2.3