21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-06-23 01:30:59 +02:00
chexpire/test/services/whois/parser_test.rb
2018-06-05 16:42:46 +02:00

23 lines
655 B
Ruby

require "test_helper"
require "whois/parser"
require "whois/errors"
module Whois
class ParserTest < ActiveSupport::TestCase
test "should instanciate a parser class matching AFNIC tlds" do
assert_kind_of Parser::AFNIC, Parser.for("example.fr")
end
test "should instanciate a parser class matching Verisign tlds" do
assert_kind_of Parser::Verisign, Parser.for("example.com")
assert_kind_of Parser::Verisign, Parser.for("example.net")
end
test "should raises an exception when a domain is not supported" do
assert_raises UnsupportedDomainError do
Parser.for("example.xyz")
end
end
end
end