Sha256: c9f5e64a8593e06e6a9109c9dc7334dd9126403229ac2c881aedce51431896e0
Contents?: true
Size: 411 Bytes
Versions: 14
Compression:
Stored size: 411 Bytes
Contents
require './test/lib_read_write' require 'tempfile' require 'tmpdir' class TestUnixClientReadServerWrite < Test::Unit::TestCase def setup @tmpdir = Dir.mktmpdir('kgio_unix_0') tmp = Tempfile.new('kgio_unix_0', @tmpdir) @path = tmp.path tmp.close! @srv = Kgio::UNIXServer.new(@path) @rd = Kgio::UNIXSocket.new(@path) @wr = @srv.kgio_tryaccept end include LibReadWriteTest end
Version data entries
14 entries across 14 versions & 2 rubygems