Sha256: 14684ff32cd0b1c53a5f9c86db4b1e1e85829e47e16eb65a5b6b18a522b5f6b1
Contents?: true
Size: 1.41 KB
Versions: 1
Compression:
Stored size: 1.41 KB
Contents
require File.expand_path '../../test_helper', __dir__ # Test class for NetworkInterface Collection class TestNetworkInterfaces < Minitest::Test def setup @service = Fog::Network::AzureRM.new(credentials) @network_interfaces = Fog::Network::AzureRM::NetworkInterfaces.new(resource_group: 'fog-test-rg', service: @service) end def test_collection_methods methods = [ :all, :get ] methods.each do |method| assert @network_interfaces.respond_to? method end end def test_collection_attributes assert @network_interfaces.respond_to? :resource_group end def test_all_method_response response = [ApiStub::Models::Network::NetworkInterface.create_network_interface_response] @service.stub :list_network_interfaces, response do assert_instance_of Fog::Network::AzureRM::NetworkInterfaces, @network_interfaces.all assert @network_interfaces.all.size >= 1 @network_interfaces.all.each do |nic| assert_instance_of Fog::Network::AzureRM::NetworkInterface, nic end end end def test_get_method_response response = ApiStub::Models::Network::NetworkInterface.create_network_interface_response @service.stub :get_network_interface, response do assert_instance_of Fog::Network::AzureRM::NetworkInterface, @network_interfaces.get('fog-test-rg', 'fog-test-network-interface') end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-azure-rm-0.0.4 | test/models/network/test_network_interfaces.rb |