I realize this is an old discussion, but I came across it while having the a similar problem, so maybe my solution will help someone else.
My problem was I was my mocked method wasn't being called because I didn't get the "with" right. Here's what I had, which wasn't working:
# widgets/new.html.erb
<% form_for(@widgets) do |f| %>
<%= render :partial => "form", :locals => {:f => f} %>
<%= f.submit "Create" %>
<% end %>
# widgets/new.html.erb_spec.rb
describe "widgets/new.html.erb" do
let(:widget) { @widget ||= Widget.new }
it "displays a form" do
template.should_receive(:render).
with(:partial => "form").
and_return("<span id=\"rendered-form\"/>")
render
response.should have_tag("form[method=?][action=?]", "put", widget_path(widget)) do |form|
form.should have_tag("span[id=?]", "rendered-form")
form.should have_tag("input[type=?][value=?]", "submit", "Create")
end
end
end
Of course it's obvious now why it wasn't working, I was calling:
render :partial => "form", :locals => {:f => f}
But my spec was mocking:
render :partial => "form"
So naturally, my mocked method wouldn't be called. Once I realized that, I started trying to mock form_for, and all kinds of other things, but the solution was much easier:
template.should_receive(:render).
with(hash_including(:partial => "form")).
and_return("<span id=\"rendered-form\"/>")
hash_including() was what was missing.
So maybe your problem is similar: you're not really mocking what you think you're mocking.