I have following code in an action:
render :file => 'public/404.html' and return
This works fine in the browser. I have written the following rspec example to test this:
  it "renders 404" do
    get :new
    response.should render_template('public/404.html')
  end
Running this example results in the following error:
 Failure/Error: response.should render_template('public/404.html')
   Expected block to return true value.
I have also tried response.should render_template(:file => 'public/404.html') but that too results in an error.
How should I test this?
 
     
     
    