mechanize.cr/spec/mechanize_spec.cr

24 lines
624 B
Crystal
Raw Normal View History

2021-04-19 06:50:12 +02:00
require "./spec_helper"
2021-06-08 14:20:46 +02:00
require "webmock"
WebMock.stub(:any, "example.com")
2021-04-19 06:50:12 +02:00
describe Mechanize do
2021-06-09 15:36:35 +02:00
it "simple GET" do
2021-06-09 14:44:54 +02:00
agent = Mechanize.new
uri = "http://example.com/"
page = agent.get(uri)
page.code.should eq 200
page.uri.to_s.should eq uri
2021-04-19 06:50:12 +02:00
end
2021-06-09 15:36:35 +02:00
it "GET with query parameter" do
WebMock.stub(:get, "http://example.com/?foo=bar&foo1=bar2")
agent = Mechanize.new
params = {"foo" => "bar", "foo1" => "bar2"}
uri = "http://example.com/"
page = agent.get(uri, params: params)
page.code.should eq 200
page.uri.to_s.should eq "http://example.com/?foo=bar&foo1=bar2"
end
2021-04-19 06:50:12 +02:00
end