#spec/controller/application_controller_spec.rb require 'spec_helper' describe ApplicationController do describe 'GET "opensearch"' do before do xml_http_request :get, :opensearch end subject { response } it { should render_template('application/opensearch') } context 'header' do subject { response.header['Content-Type'] } it { should == 'application/opensearchdescription+xml; charset=utf-8' } end end end