Sha256: c1d32e4c14ceeae196eef1b2f40d0c78e9ec6c2012c364c64ae56380e18a9587
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
require File.expand_path '../../test_helper', __dir__ # Test class for PublicIp Model class TestPublicIp < Minitest::Test def setup @service = Fog::Network::AzureRM.new(credentials) network_client = @service.instance_variable_get(:@network_client) @public_ip = public_ip(@service) @response = ApiStub::Models::Network::PublicIp.create_public_ip_response(network_client) end def test_model_methods methods = [ :save, :destroy ] @service.stub :create_public_ip, @response do methods.each do |method| assert @public_ip.respond_to? method end end end def test_model_attributes attributes = [ :name, :id, :location, :resource_group, :ip_address, :public_ip_allocation_method, :idle_timeout_in_minutes, :ip_configuration_id, :domain_name_label, :fqdn, :reverse_fqdn ] @service.stub :create_public_ip, @response do attributes.each do |attribute| assert @public_ip.respond_to? attribute end end end def test_save_method_response @service.stub :create_public_ip, @response do assert_instance_of Fog::Network::AzureRM::PublicIp, @public_ip.save end end def test_destroy_method_response response = MsRestAzure::AzureOperationResponse.new(MsRest::HttpOperationRequest.new('', '', ''), Faraday::Response.new) @service.stub :delete_public_ip, response do assert_instance_of MsRestAzure::AzureOperationResponse, @public_ip.destroy end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-azure-rm-0.0.5 | test/models/network/test_public_ip.rb |