1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/rackspace/models/monitoring/alarm_example_tests.rb
Matt Darby 72e52e70be Revert "Moving Rackspace logic to fog-rackspace"
This reverts commit d6ecb19d24.

Conflicts:
	fog.gemspec
2014-12-10 11:30:34 -05:00

18 lines
594 B
Ruby

Shindo.tests('Fog::Rackspace::Monitoring | alarm_example', ['rackspace','rackspace_monitoring']) do
pending if Fog.mocking?
service = Fog::Rackspace::Monitoring.new
alarm_example_id = 'remote.http_body_match_1'
alarm = service.alarm_examples.get(alarm_example_id)
tests('#bound?') do
tests('should return false if not bound') do
returns(false) {alarm.bound?}
end
tests('should return true if bound') do
values = {'string' => '12345'}
alarm = service.alarm_examples.evaluate(alarm_example_id,values)
returns(true) {alarm.bound?}
end
end
end