blob: b283655359383be2952c7fa0090e9ab03bd396f7 (
plain)
1
2
3
4
5
6
7
8
9
|
require_relative '../../../spec_helper'
require 'net/http'
describe "Net::HTTP#use_ssl?" do
it "returns false" do
http = Net::HTTP.new("localhost")
http.use_ssl?.should == false
end
end
|