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