Sha256: 18befa42ff27ae6b5c2e5d54a71320990cb09bdd014e0c0fa2fb8d40c99908e3
Contents?: true
Size: 432 Bytes
Versions: 15
Compression:
Stored size: 432 Bytes
Contents
require "spec_helper" RSpec.describe "Regression testing" do describe "#248" do it "does not fails with github" do github_uri = "http://github.com/" expect { HTTP.get(github_uri).to_s }.not_to raise_error end it "does not failes ith googleapis" do google_uri = "https://www.googleapis.com/oauth2/v1/userinfo?alt=json" expect { HTTP.get(google_uri).to_s }.not_to raise_error end end end
Version data entries
15 entries across 15 versions & 1 rubygems