Files
growstuff/spec/views/forums/show.html.haml_spec.rb
Skud 0aab5286f0 General prettification and making it look nice.
Also upgraded Bootstrap, just for the hell of it.
2013-02-20 15:42:44 +11:00

38 lines
861 B
Ruby

require 'spec_helper'
describe "forums/show" do
before(:each) do
controller.stub(:current_user) { nil }
@forum = assign(:forum, FactoryGirl.create(:forum))
end
it "renders attributes" do
render
rendered.should contain "Everything about permaculture"
rendered.should contain @forum.owner.to_s
end
it "parses markdown description into html" do
render
assert_select "em", "Everything"
end
it 'links to new post with the forum id' do
render
assert_select "a[href=#{new_post_path(:forum_id => @forum.id)}]"
end
it 'has no posts' do
render
rendered.should contain "No posts yet."
end
it 'shows posts' do
@post = FactoryGirl.create(:post, :forum => @forum)
render
assert_select "table"
rendered.should contain @post.subject
rendered.should contain @post.author.to_s
end
end