spec/lib/crawler/http_client_spec.rb [160:168]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        with_proxy do
          with_example_site do
            expect_result('http://localhost:12345', 200)
            expect_result('http://localhost:12345/hello', 404)
            expect(proxy_requests.count).to eq(2)
            expect(proxy_requests.map(&:path)).to eq(['/', '/hello'])
          end
        end
      end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/lib/crawler/http_client_spec.rb [199:207]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          with_proxy do
            with_example_site do
              expect_result('http://localhost:12345', 200)
              expect_result('http://localhost:12345/hello', 404)
              expect(proxy_requests.count).to eq(2)
              expect(proxy_requests.map(&:path)).to eq(['/', '/hello'])
            end
          end
        end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



