summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net-http/http/http_default_port_spec.rb
blob: 82c88e58a8eefbff7818e82179049ba34975a57b (plain)
1
2
3
4
5
6
7
8
require_relative '../../../spec_helper'
require 'net/http'

describe "Net::HTTP.http_default_port" do
  it "returns 80" do
    Net::HTTP.http_default_port.should.eql?(80)
  end
end