require File.expand_path('../../../../spec_helper', __FILE__) require File.expand_path('../../fixtures/classes', __FILE__) require 'socket' describe 'Socket::Option#inspect' do it 'correctly returns SO_LINGER value' do value = Socket::Option.linger(nil, 0).inspect value.should == '#' value = Socket::Option.linger(false, 30).inspect value.should == '#' value = Socket::Option.linger(true, 0).inspect value.should == '#' value = Socket::Option.linger(true, 30).inspect value.should == '#' end end