summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rbconfig/rbconfig_spec.rb
blob: caa557c32cc654b515f743b08f022f8072af54f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../spec_helper'
require 'rbconfig'

describe 'RbConfig::CONFIG values' do
  it 'are all strings' do
    RbConfig::CONFIG.each do |k, v|
      k.should be_kind_of String
      v.should be_kind_of String
    end
  end
end