Sha256: 5761d5cac83b38fe16b66a6f811f408f38c7eb2076aef5d6b0172b25a4a9a659
Contents?: true
Size: 382 Bytes
Versions: 16
Compression:
Stored size: 382 Bytes
Contents
require 'test/unit' require 'kgio' class TestKgioSocket < Test::Unit::TestCase def test_socket_args s = Kgio::Socket.new(Socket::AF_INET, Socket::SOCK_STREAM, 0) assert_kind_of Socket, s assert_instance_of Kgio::Socket, s s = Kgio::Socket.new(Socket::AF_UNIX, Socket::SOCK_STREAM, 0) assert_kind_of Socket, s assert_instance_of Kgio::Socket, s end end
Version data entries
16 entries across 16 versions & 2 rubygems