Sha256: 0763abac13861bbe6e6a204706996836d8835ae5c790fc5e2273045ecad2ae8c
Contents?: true
Size: 902 Bytes
Versions: 6
Compression:
Stored size: 902 Bytes
Contents
require File.expand_path '../../test_helper', __dir__ # Test class for Restart Virtual Machine Request class TestRestartVirtualMachine < Minitest::Test def setup @service = Fog::Compute::AzureRM.new(credentials) compute_client = @service.instance_variable_get(:@compute_mgmt_client) @virtual_machines = compute_client.virtual_machines end def test_restart_virtual_machine_success @virtual_machines.stub :restart, true do assert @service.restart_virtual_machine('fog-test-rg', 'fog-test-server') end end def test_restart_virtual_machine_failure response = proc { fail MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) } @virtual_machines.stub :restart, response do assert_raises(RuntimeError) { @service.restart_virtual_machine('fog-test-rg', 'fog-test-server') } end end end
Version data entries
6 entries across 6 versions & 1 rubygems