summaryrefslogtreecommitdiff
path: root/spec/ruby/library/etc/confstr_spec.rb
blob: 5b434611505304b94a2614d563af6ed0b5c85820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require_relative '../../spec_helper'
require 'etc'

platform_is_not :windows, :android do
  describe "Etc.confstr" do
    it "returns a String for Etc::CS_PATH" do
      Etc.confstr(Etc::CS_PATH).should be_an_instance_of(String)
    end

    it "raises Errno::EINVAL for unknown configuration variables" do
      -> { Etc.confstr(-1) }.should raise_error(Errno::EINVAL)
    end
  end
end