aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/socket/unixserver/for_fd_spec.rb
blob: c3cfd86a1ced4a6abb7c5e8d409f0794a40331ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.expand_path('../../../../spec_helper', __FILE__)
require File.expand_path('../../fixtures/classes', __FILE__)

platform_is_not :windows do
  describe "UNIXServer#for_fd" do
    before :each do
      @unix_path = SocketSpecs.socket_path
      @unix = UNIXServer.new(@unix_path)
    end

    after :each do
      @unix.close if @unix
      SocketSpecs.rm_socket @unix_path
    end

    it "can calculate the path" do
      b = UNIXServer.for_fd(@unix.fileno)
      b.autoclose = false

      b.path.should == @unix_path
    end
  end
end