1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/google/models/compute/backend_services_tests.rb
2014-08-07 03:26:22 +00:00

8 lines
370 B
Ruby

require 'securerandom'
Shindo.tests("Fog::Compute[:google] | backend_services model", ['google']) do
random_string = SecureRandom.hex
@health_check = create_test_http_health_check(Fog::Compute[:google])
collection_tests(Fog::Compute[:google].backend_services, {:name => "fog-backend-services-test-#{random_string}",
:health_checks => [@health_check]})
end