diff --git a/tests/rackspace/requests/monitoring/check_tests.rb b/tests/rackspace/requests/monitoring/check_tests.rb index eb754b96f..7b85690dd 100644 --- a/tests/rackspace/requests/monitoring/check_tests.rb +++ b/tests/rackspace/requests/monitoring/check_tests.rb @@ -1,4 +1,4 @@ -Shindo.tests('Fog::Rackspace::Monitoring | check_tests', ['rackspace', 'rackspace_monitoring']) do +Shindo.tests('Fog::Rackspace::Monitoring | check_tests', ['rackspace', 'rackspacemonitoring']) do pending if Fog.mocking? account = Fog::Rackspace::Monitoring.new @@ -10,6 +10,9 @@ Shindo.tests('Fog::Rackspace::Monitoring | check_tests', ['rackspace', 'rackspac check_id = response[:headers]['X-Object-ID'] response end + tests('#get check').formats(LIST_HEADERS_FORMAT) do + account.get_check(entity_id,check_id).data + end tests('#update check').formats(DATA_FORMAT) do options = { :label => "Bar"} account.update_check(entity_id,check_id,options).data @@ -22,6 +25,9 @@ Shindo.tests('Fog::Rackspace::Monitoring | check_tests', ['rackspace', 'rackspac tests('#create new check(-1)').raises(Fog::Rackspace::Monitoring::BadRequest) do account.create_check(entity_id, {:type => ""}) end + tests('#get check(-1)').raises(Fog::Rackspace::Monitoring::NotFound) do + account.get_check(-1, -1) + end tests('#update invalid check(-1)').raises(Fog::Rackspace::Monitoring::NotFound) do options = { :testing => "Bar" } response = account.update_check(-1,-1,options)