summaryrefslogtreecommitdiff
path: root/spec/ruby/library/socket/ancillarydata/level_spec.rb
blob: 40b070a6d81100ab02db38b79d76d97638454ff1 (plain)
1
2
3
4
5
6
7
8
9
require_relative '../spec_helper'

with_feature :ancillary_data do
  describe 'Socket::AncillaryData#level' do
    it 'returns the level as a Fixnum' do
      Socket::AncillaryData.new(:INET, :SOCKET, :RIGHTS, '').level.should == Socket::SOL_SOCKET
    end
  end
end