Sha256: b70c9e91d735fbcee6a4294204613f31eea8fc60a11de1cfc1d80eb730c0728a
Contents?: true
Size: 452 Bytes
Versions: 35
Compression:
Stored size: 452 Bytes
Contents
require "spec_helper" describe Brightbox::CollaboratingAccount do subject(:account) do data = { "id" => "acc-12345" } account_model = Fog::Compute::Brightbox::Account.new(data) Brightbox::CollaboratingAccount.new(account_model) end it_behaves_like "a wrapped API resource" it { is_expected.to respond_to(:ram_free) } it { is_expected.to respond_to(:cloud_ip_limit) } it { is_expected.to respond_to(:lb_limit) } end
Version data entries
35 entries across 35 versions & 1 rubygems