Sha256: 2d4034f6ee8faf35246bdcf1e500a0a977d8b3193307d3835702367b7470b30d
Contents?: true
Size: 473 Bytes
Versions: 26
Compression:
Stored size: 473 Bytes
Contents
require "helpers/integration_test_helper" class TestComputeClient < FogIntegrationTest def test_client_options # XXX This is a very rudimentary test checking that proxy option is applied client_options = { proxy_url: "https://user:password@host:8080" } connection = Fog::Compute::Google.new(google_client_options: client_options) err = assert_raises(ArgumentError) { connection.servers.all } assert_match(/unsupported proxy/, err.message) end end
Version data entries
26 entries across 26 versions & 2 rubygems