mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
5 lines
255 B
Ruby
5 lines
255 B
Ruby
require 'securerandom'
|
|
Shindo.tests("Fog::Compute[:google] | HTTP health check model", ['google']) do
|
|
random_string = SecureRandom.hex
|
|
model_tests(Fog::Compute[:google].http_health_checks, {:name => "fog-test-http-health-check-#{random_string}"})
|
|
end
|