1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/core/kernel/nil_spec.rb
2021-09-07 19:01:07 +02:00

12 lines
261 B
Ruby

require_relative '../../spec_helper'
require_relative 'fixtures/classes'
describe 'Kernel#nil?' do
it 'returns false' do
Object.should_not.nil?
Object.new.should_not.nil?
''.should_not.nil?
[].should_not.nil?
{}.should_not.nil?
end
end