1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/dreamhost/helper.rb
Sergio Rubio 94e44d44e5 [dreamhost|dns] added test helpers
Also, use a helper instead of hardcoding the test domain in the tests
2013-01-21 19:52:35 +01:00

19 lines
543 B
Ruby

def test_domain
'fog-dream.com'
end
def do_not_delete_record
"do-not-delete.#{test_domain}"
end
## Cleanup
# We need to have at least one record defined for the Dreamhost DNS api to work
# or you will get a no_such_zone runtime error
# The first record needs to be created using the Dreamhost Web panel AFAIK
#
def cleanup_records
Fog::DNS[:dreamhost].records.each do |r|
# Do not delete the 'do-not-delete' record, we need it for the tests
r.destroy if r.name =~ /#{test_domain}/ and r.name != do_not_delete_record
end
end