Module: Gemmy::Patches::ArrayPatch::ClassMethods::Wrap

Defined in:
lib/gemmy/patches/array_patch.rb

Class Method Summary collapse

Class Method Details

.autotestObject



9
10
11
12
13
# File 'lib/gemmy/patches/array_patch.rb', line 9

def self.autotest
  Array.wrap(nil).eql?([]) &&\
  Array.wrap([]).eql?([]) &&\
  Array.wrap(1).eql?([1])
end