зеркало из https://github.com/github/ruby.git
36 строки
670 B
Plaintext
36 строки
670 B
Plaintext
describe "webmock tests" do
|
|
before(:each) do
|
|
WebMock.enable!
|
|
end
|
|
|
|
after(:each) do
|
|
WebMock.disable!
|
|
end
|
|
|
|
it "port" do
|
|
port = rand(1000...9999)
|
|
stub_request(:any, "localhost:#{port}")
|
|
|
|
query = Cutlass::FunctionQuery.new(
|
|
port: port
|
|
).call
|
|
|
|
expect(WebMock).to have_requested(:post, "localhost:#{port}").
|
|
with(body: "{}")
|
|
end
|
|
|
|
it "body" do
|
|
body = { lol: "hi" }
|
|
port = 8080
|
|
stub_request(:any, "localhost:#{port}")
|
|
|
|
query = Cutlass::FunctionQuery.new(
|
|
port: port
|
|
body: body
|
|
).call
|
|
|
|
expect(WebMock).to have_requested(:post, "localhost:#{port}").
|
|
with(body: body.to_json)
|
|
end
|
|
end
|