1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/net/http/httpgenericrequest/inspect_spec.rb

26 lines
920 B
Ruby
Raw Normal View History

require_relative '../../../../spec_helper'
require 'net/http'
describe "Net::HTTPGenericRequest#inspect" do
it "returns a String representation of self" do
request = Net::HTTPGenericRequest.new("POST", true, true, "/some/path")
request.inspect.should == "#<Net::HTTPGenericRequest POST>"
request = Net::HTTPGenericRequest.new("GET", false, true, "/some/path")
request.inspect.should == "#<Net::HTTPGenericRequest GET>"
request = Net::HTTPGenericRequest.new("BLA", true, true, "/some/path")
request.inspect.should == "#<Net::HTTPGenericRequest BLA>"
# Subclasses
request = Net::HTTP::Get.new("/some/path")
request.inspect.should == "#<Net::HTTP::Get GET>"
request = Net::HTTP::Post.new("/some/path")
request.inspect.should == "#<Net::HTTP::Post POST>"
request = Net::HTTP::Trace.new("/some/path")
request.inspect.should == "#<Net::HTTP::Trace TRACE>"
end
end