1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

tests passing

This commit is contained in:
Michael Hale 2011-06-16 15:04:01 -07:00 committed by geemus
parent fdb90eda30
commit 02beddb1ac
2 changed files with 4 additions and 0 deletions

View file

@ -18,6 +18,8 @@ module Fog
end end
def new(attributes = {}) def new(attributes = {})
requires :zone
super({ :zone => zone }.merge!(attributes))
end end
end end

View file

@ -17,9 +17,11 @@ module Fog
end end
def records def records
@records ||= Fog::Dynect::DNS::Records.new(:zone => self, :connection => connection)
end end
def nameservers def nameservers
[]
end end
def save def save