require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
describe "/questions/show.html.erb" do
include QuestionsHelper
before(:each) do
assigns[:question] = @question = stub_model(Question)
end
it "renders attributes in <p>" do
render
end
end