it 'includes the parameters in the request URI' do
            get 'http://www.example.org/test.pdf?def=123&abc=456'
            # env state sent to downstream middleware
            expect(request_env['PATH_INFO']).to eq '/test'
            expect(request_env['REQUEST_URI']).to eq 'http://www.example.org/test?def=123&abc=456'