-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #258 from hedgieinsocks/small_parser_fixes
Small fixes for .AI, .SITE, .DESIGN parsers
- Loading branch information
Showing
2 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,6 +162,9 @@ def test_ai_parse(self): | |
Registry Domain ID: 325702_nic_ai | ||
Registry WHOIS Server: whois.nic.ai | ||
Creation Date: 2017-12-16T05:37:20.801Z | ||
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited | ||
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited | ||
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited | ||
Registrar: Markmonitor | ||
Registrar Abuse Contact Email: [email protected] | ||
Registrar Abuse Contact Phone: +1.2083895740 | ||
|
@@ -266,6 +269,11 @@ def test_ai_parse(self): | |
"tech_phone": "+1.6502530000", | ||
"tech_postal_code": "94043", | ||
"tech_state": "CA", | ||
"status": [ | ||
"clientTransferProhibited https://icann.org/epp#clientTransferProhibited", | ||
"clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited", | ||
"clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited" | ||
], | ||
} | ||
self._parse_and_compare("google.ai", data, expected_results) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters