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