mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
12 lines
241 B
Ruby
12 lines
241 B
Ruby
|
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
|