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

[dns|examples] fix deprecated record#ip= usage

This commit is contained in:
geemus 2011-06-22 15:24:04 -07:00
parent 98579a342a
commit a1ad4cf245

View file

@ -35,9 +35,9 @@ Shindo.tests('dns examples', 'dns') do
# type is the type of record to create
tests('@record = @zone.records.create').succeeds do
@record = @zone.records.create(
:ip => '1.2.3.4',
:name => 'www.fogdnsexamples.com',
:type => 'A'
:value => '1.2.3.4',
:name => 'www.fogdnsexamples.com',
:type => 'A'
)
end