Files
growstuff/spec/views/posts/new.html.haml_spec.rb
milesgould bb6e9e32e6 De-deprecate controller and view specs
We deprecated controller and view specs on the grounds that they were
brittle, and were a poorer measure of user experience than feature
specs. However, feature specs have their own problems: they're much
slower to run, and flakier (see #901). We also ran into a few cases
where feature specs erroneously passed because they were checking for
the presence of a string that occurred in the error page!

Hence, we're cautiously un-deprecating controller and view specs.

Fixes #1132
2017-11-24 19:02:54 +13:00

62 lines
1.6 KiB
Ruby

require 'rails_helper'
describe "posts/new" do
before(:each) do
@author = FactoryBot.create(:member)
assign(:post, FactoryBot.create(:post, author: @author))
# assign(:forum, Forum.new)
sign_in @author
controller.stub(:current_user) { @author }
end
it "renders new post form" do
render
assert_select "form", action: posts_path, method: "post" do
assert_select "input#post_subject", name: "post[subject]"
assert_select "textarea#post_body", name: "post[body]"
end
end
it 'no hidden forum field' do
render
assert_select "input#post_forum_id[type=hidden]", false
end
it 'no forum mentioned' do
render
rendered.should_not have_content "This post will be posted in the forum"
end
it "asks what's going on in your garden" do
render
rendered.should have_content "What's going on in your food garden?"
end
context "forum specified" do
before(:each) do
@forum = assign(:forum, FactoryBot.create(:forum))
assign(:post, FactoryBot.create(:post, forum: @forum))
render
end
it 'creates a hidden field' do
assert_select "input#post_forum_id[type='hidden'][value='#{@forum.id}']"
end
it 'tells the user what forum it will be posted in' do
rendered.should have_content "This post will be posted in the forum #{@forum.name}"
end
it "asks what's going on generally" do
render
rendered.should_not have_content "What's going on in your food garden?"
rendered.should have_content "What's up?"
end
end
it 'shows markdown help' do
render
rendered.should have_content 'Markdown'
end
end