Sha256: dab3fcc67c60452413b9f579653b10fbb340f5fc03f17af57338e1fb5a2f76a7

Contents?: true

Size: 340 Bytes

Versions: 45

Compression:

Stored size: 340 Bytes

Contents

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

45 entries across 44 versions & 8 rubygems

Version Path
ethon-0.8.0 spec/ethon/libc_spec.rb
ethon-0.7.4 spec/ethon/libc_spec.rb
ethon-0.7.3 spec/ethon/libc_spec.rb
ethon-0.7.2 spec/ethon/libc_spec.rb
ethon-0.7.1 spec/ethon/libc_spec.rb