Sha256: 9e8d382419238c17501c97fb0a9a78e07f5cf90c00a835ca9d6b01623097c9a7
Contents?: true
Size: 375 Bytes
Versions: 29
Compression:
Stored size: 375 Bytes
Contents
require 'tempfile' require './test/lib_server_accept' class TestKgioUNIXServer < Test::Unit::TestCase def setup tmp = Tempfile.new('kgio_unix') @path = tmp.path File.unlink(@path) tmp.close rescue nil @srv = Kgio::UNIXServer.new(@path) @host = '127.0.0.1' end def client_connect UNIXSocket.new(@path) end include LibServerAccept end
Version data entries
29 entries across 29 versions & 1 rubygems