Sha256: 7f33437d668ae971d5dff027467a652b6457148eb99ea473d7291255944ad68f
Contents?: true
Size: 370 Bytes
Versions: 7124
Compression:
Stored size: 370 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe Ethon::Libc do describe "#getdtablesize", :if => !Ethon::Curl.windows? do it "returns an integer" do expect(Ethon::Libc.getdtablesize).to be_a(Integer) end it "returns bigger zero", :if => !Ethon::Curl.windows? do expect(Ethon::Libc.getdtablesize).to_not be_zero end end end
Version data entries
7,124 entries across 7,122 versions & 24 rubygems