PageRenderTime 42ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/spec/whois/record/parser/responses/whois.nic.fr/fr/property_nameservers_multiple_ipv4_spec.rb

http://github.com/weppos/whois
Ruby | 38 lines | 23 code | 5 blank | 10 comment | 0 complexity | 4cd515da6c9d963cad7a7b74be5bbb22 MD5 | raw file
Possible License(s): MIT
  1. # encoding: utf-8
  2. # This file is autogenerated. Do not edit it manually.
  3. # If you want change the content of this file, edit
  4. #
  5. # /spec/fixtures/responses/whois.nic.fr/fr/property_nameservers_multiple_ipv4.expected
  6. #
  7. # and regenerate the tests with the following rake task
  8. #
  9. # $ rake spec:generate
  10. #
  11. require 'spec_helper'
  12. require 'whois/record/parser/whois.nic.fr.rb'
  13. describe Whois::Record::Parser::WhoisNicFr, "property_nameservers_multiple_ipv4.expected" do
  14. subject do
  15. file = fixture("responses", "whois.nic.fr/fr/property_nameservers_multiple_ipv4.txt")
  16. part = Whois::Record::Part.new(body: File.read(file))
  17. described_class.new(part)
  18. end
  19. describe "#nameservers" do
  20. it do
  21. expect(subject.nameservers).to be_a(Array)
  22. expect(subject.nameservers).to have(2).items
  23. expect(subject.nameservers[0]).to be_a(Whois::Record::Nameserver)
  24. expect(subject.nameservers[0].name).to eq("ns1.boursedirect.fr")
  25. expect(subject.nameservers[0].ipv4).to eq("212.157.203.190")
  26. expect(subject.nameservers[0].ipv6).to eq(nil)
  27. expect(subject.nameservers[1]).to be_a(Whois::Record::Nameserver)
  28. expect(subject.nameservers[1].name).to eq("ns2.boursedirect.fr")
  29. expect(subject.nameservers[1].ipv4).to eq("212.157.203.189")
  30. expect(subject.nameservers[1].ipv6).to eq(nil)
  31. end
  32. end
  33. end