Skip to content

Commit

Permalink
Update README for GH-182
Browse files Browse the repository at this point in the history
  • Loading branch information
weppos committed Sep 5, 2012
1 parent bb55553 commit 779a00e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,8 @@

* NEW: Added full whois.tucows.com parser.

* NEW: whois.networksolutions.com parser now recognizes throttled responses (GH-182). [Thanks @JustinCampbell]

* FIXED: Fixed whois.register.com parser for enom formats (GH-181). [Thanks @JustinCampbell]

* FIXED: whois.jprs.js parser should support status `Suspended`.
Expand Down
Expand Up @@ -7,9 +7,6 @@
#registered?
should: %s == true

#response_throttled?
should: %s == false


#created_on
should: %s CLASS(time)
Expand Down Expand Up @@ -90,3 +87,7 @@
should: %s[2] CLASS(nameserver)
should: %s[2].name == "ns-west.cerf.net"
should: %s[2].ipv4 == "192.153.156.3"


#response_throttled?
should: %s == false
Expand Up @@ -36,11 +36,6 @@
@parser.registered?.should == true
end
end
describe "#response_throttled?" do
it do
@parser.response_throttled?.should == false
end
end
describe "#created_on" do
it do
@parser.created_on.should be_a(Time)
Expand Down Expand Up @@ -135,4 +130,9 @@
@parser.nameservers[2].ipv4.should == "192.153.156.3"
end
end
describe "#response_throttled?" do
it do
@parser.response_throttled?.should == false
end
end
end

0 comments on commit 779a00e

Please sign in to comment.