test/requests/dns/test_create_zone.rb in fog-azure-rm-0.0.4 vs test/requests/dns/test_create_zone.rb in fog-azure-rm-0.0.5
- old
+ new
@@ -6,31 +6,31 @@
@service = Fog::DNS::AzureRM.new(credentials)
@zones = @service.zones
@token_provider = Fog::Credentials::AzureRM.instance_variable_get(:@token_provider)
end
- def test_create_zone_success
+ def test_create_or_update_zone_success
response = ApiStub::Requests::DNS::Zone.rest_client_put_method_for_zone_resonse
@token_provider.stub :get_authentication_header, 'Bearer <some-token>' do
RestClient.stub :put, response do
- assert_equal @service.create_zone('fog-test-rg', 'fog-test-zone'), JSON.parse(response)
+ assert_equal @service.create_or_update_zone('fog-test-rg', 'fog-test-zone'), JSON.parse(response)
end
end
end
- def test_create_zone_failure
+ def test_create_or_update_zone_failure
@token_provider.stub :get_authentication_header, 'Bearer <some-token>' do
assert_raises ArgumentError do
- @service.create_zone('fog-test-zone')
+ @service.create_or_update_zone('fog-test-zone')
end
end
end
- def test_create_zone_exception
+ def test_create_or_update_zone_exception
response = -> { fail RestClient::Exception.new("'body': {'error': {'code': 'ResourceNotFound', 'message': 'mocked exception message'}}") }
@token_provider.stub :get_authentication_header, response do
assert_raises Exception do
- @service.create_zone('fog-test-rg', 'fog-test-zone')
+ @service.create_or_update_zone('fog-test-rg', 'fog-test-zone')
end
end
end
end