Sha256: 2ff0c32089175c71f0ab6b372844a3133cdefa106cb1f556803d0b8667b889a4
Contents?: true
Size: 1014 Bytes
Versions: 33
Compression:
Stored size: 1014 Bytes
Contents
require File.expand_path '../../test_helper', __dir__ # Test class for List Network Interfaces Request class TestListNetworkInterfaces < Minitest::Test def setup @service = Fog::Network::AzureRM.new(credentials) @network_client = @service.instance_variable_get(:@network_client) @network_interfaces = @network_client.network_interfaces end def test_list_network_interfaces_success mocked_response = ApiStub::Requests::Network::NetworkInterface.list_network_interfaces_response(@network_client) @network_interfaces.stub :list_as_lazy, mocked_response do assert_equal @service.list_network_interfaces('fog-test-rg'), mocked_response.value end end def test_list_network_interfaces_failure response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) } @network_interfaces.stub :list_as_lazy, response do assert_raises(RuntimeError) { @service.list_network_interfaces('fog-test-rg') } end end end
Version data entries
33 entries across 33 versions & 4 rubygems