mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@a454137
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63768 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fc1f3f14d3
commit
9dc121cc57
143 changed files with 328 additions and 146 deletions
11
spec/ruby/library/rbconfig/rbconfig_spec.rb
Normal file
11
spec/ruby/library/rbconfig/rbconfig_spec.rb
Normal file
|
@ -0,0 +1,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
|
Loading…
Add table
Add a link
Reference in a new issue