Sha256: 5587fe9de81f0f70b6c432bb85ccfd5b4a24e6fecb7d396b04d31ba292d7460c
Contents?: true
Size: 866 Bytes
Versions: 33
Compression:
Stored size: 866 Bytes
Contents
require File.expand_path '../../test_helper', __dir__ # Test class for Delete Application Gateway Request class TestDeleteApplicationGateway < Minitest::Test def setup @service = Fog::ApplicationGateway::AzureRM.new(credentials) gateway_client = @service.instance_variable_get(:@network_client) @gateways = gateway_client.application_gateways end def test_delete_application_gateway_success @gateways.stub :delete, true do assert @service.delete_application_gateway('fogRM-rg', 'gateway'), true end end def test_delete_application_gateway_failure response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) } @gateways.stub :delete, response do assert_raises(RuntimeError) { @service.delete_application_gateway('fogRM-rg', 'gateway') } end end end
Version data entries
33 entries across 33 versions & 4 rubygems