summaryrefslogtreecommitdiff
path: root/spec/ruby/library/socket/unixsocket/new_spec.rb
blob: 6d8ea6dcfe6c3a7e5552566b303ae9b33511537d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require_relative '../spec_helper'
require_relative 'shared/new'

with_feature :unix_socket do
  describe "UNIXSocket.new" do
    it_behaves_like :unixsocket_new, :new

    it "does not use the given block and warns to use UNIXSocket::open" do
      -> {
        @client = UNIXSocket.new(@path) { raise }
      }.should complain(/warning: UNIXSocket::new\(\) does not take block; use UNIXSocket::open\(\) instead/)
    end
  end
end