[dns] fix shared pending tests

This commit is contained in:
geemus 2011-01-03 11:48:55 -08:00
parent 0e7f8d7f53
commit 7dbe810fd1
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ for provider, config in dns_providers
:type => 'A'
}.merge!(config[:record_params] || {})
if !Fog.mocking? || provider[:mocked]
if !Fog.mocking? || config[:mocked]
@zone = provider[:dns].zones.create(:domain => 'fogrecordtests.com')
model_tests(@zone.records, params, config[:mocked])

View File

@ -8,7 +8,7 @@ for provider, config in dns_providers
:type => 'A'
}.merge!(config[:records_params] || {})
if !Fog.mocking? || provider[:mocked]
if !Fog.mocking? || config[:mocked]
@zone = provider[:dns].zones.create(:domain => 'fogrecordstests.com')
collection_tests(@zone.records, params, config[:mocked])