Sha256: 2746c898e71ee2431f949dc50e75776633e0cf934ca03c0058ec0dd6c7622416
Contents?: true
Size: 879 Bytes
Versions: 33
Compression:
Stored size: 879 Bytes
Contents
require File.expand_path '../../test_helper', __dir__ # Test class for Stop Application Gateway Request class TestStopApplicationGateway < 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_stop_application_gateway_success @gateways.stub :stop, nil do assert_equal @service.stop_application_gateway('test-rg', 'test-ag'), true end end def test_stop_application_gateway_exception_failure response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) } @gateways.stub :stop, response do assert_raises RuntimeError do @service.stop_application_gateway('test-rg', 'test-ag') end end end end
Version data entries
33 entries across 33 versions & 4 rubygems