[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
1 changed files with 3 additions and 3 deletions

View File

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