21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-17 07:58:39 +02:00
chexpire/test/services/whois_test.rb
2018-05-30 17:01:32 +02:00

10 lines
248 B
Ruby

require "test_helper"
require "whois"
class WhoisTest < ActiveSupport::TestCase
test "should instanciate a parser class matching the tld" do
# TODO: stub system command
# assert_kind_of Whois::Response, Whois.ask("example.fr")
end
end