I' trying to fix this for hours...
I have this on a controller rspec test:
it "show action should render show template" do
task = Task.make
task.mission = Mission.make
get :show, :id => task
response.should render_template(:show)
end
But it fails rendering the view because of this:
<%=h @task.mission.name %>
I don't get it... :/