Sha256: 4b8ed81752291f5b2864bf740922252d1913b8584a2ef90cf8b2d22dd3195a74
Contents?: true
Size: 585 Bytes
Versions: 4
Compression:
Stored size: 585 Bytes
Contents
require File.expand_path('../shared/new', __FILE__) describe "UNIXSocket.open" do it_behaves_like :unixsocket_new, :open platform_is_not :windows do before :each do @path = SocketSpecs.socket_path rm_r @path @server = UNIXServer.open(@path) end after :each do @server.close rm_r @path end it "opens a unix socket on the specified file and yields it to the block" do UNIXSocket.send(@method, @path) do |client| client.addr[0].should == "AF_UNIX" client.closed?.should == false end end end end
Version data entries
4 entries across 4 versions & 1 rubygems