Sha256: 93d42e5597ab6ed6a9fe9d19237b8bc8c06f27cce2e23c8cc72b9ba485ea829e
Contents?: true
Size: 537 Bytes
Versions: 4
Compression:
Stored size: 537 Bytes
Contents
require File.expand_path('../shared/new', __FILE__) describe "UNIXServer.open" do it_behaves_like :unixserver_new, :open platform_is_not :windows do before :each do @path = tmp("unixserver_spec") rm_r @path end after :each do @server.close if @server @server = nil rm_r @path end it "yields the new UNIXServer object to the block, if given" do UNIXServer.open(@path) do |unix| unix.path.should == @path unix.addr.should == ["AF_UNIX", @path] end end end end
Version data entries
4 entries across 4 versions & 1 rubygems