1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2019-12-27 16:46:08 +01:00
parent 26a9f80c82
commit a2fac1d72c
44 changed files with 772 additions and 514 deletions

View file

@ -34,6 +34,12 @@ describe "RUBY_PLATFORM" do
it "is a String" do
RUBY_PLATFORM.should be_kind_of(String)
end
platform_is :darwin do
it 'ends with the build time kernel major version on darwin' do
RUBY_PLATFORM.should =~ /-darwin\d+$/
end
end
end
describe "RUBY_RELEASE_DATE" do