# File tests/drivers/mock/realms_test.rb, line 75
    def test_it_responses_to_html
      get_auth_url '/api/realms', {}, { :format => :html }
      last_response.status.should == 200
      Nokogiri::HTML(last_response.body).search('html').first.name.should == 'html'
      get_auth_url '/api/realms/us', {}, { :format => :html }
      last_response.status.should == 200
      Nokogiri::HTML(last_response.body).search('html').first.name.should == 'html'
    end