mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
15 lines
484 B
Ruby
15 lines
484 B
Ruby
|
Shindo.tests('Fog::Rackspace::Monitoring | checks', ['rackspace','rackspace_monitoring']) do
|
||
|
service = Fog::Rackspace::Monitoring.new
|
||
|
|
||
|
begin
|
||
|
@entity = service.entities.create :label => "fog_#{Time.now.to_i.to_s}"
|
||
|
|
||
|
options = CHECK_CREATE_OPTIONS.merge(:label => "fog_#{Time.now.to_i.to_s}", :entity => @entity)
|
||
|
collection = service.checks(:entity => @entity)
|
||
|
collection_tests(collection, options, false) do
|
||
|
|
||
|
end
|
||
|
ensure
|
||
|
@entity.destroy if @entity
|
||
|
end
|
||
|
end
|