Is anyone using RSpec with RESTful rails apps? In my rails controllers I check request.respond_to? and render different views accordingly.<br><br>I noticed that the get method in the rails plugin doesn't accept headers:<br>
<br>controller_mixin.rb line 92<br>def get(action, parameters = nil)<br> @request.env['REQUEST_METHOD'] = 'GET'<br> process action, parameters<br>end<br><br>Has anyone found a way around this?<br><br>Jeff<br>