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

Version Path
rubysl-socket-1.0.1 spec/unixsocket/open_spec.rb
rubysl-socket-2.0.1 spec/unixsocket/open_spec.rb
rubysl-socket-1.0.0 spec/unixsocket/open_spec.rb
rubysl-socket-2.0.0 spec/unixsocket/open_spec.rb