module Gemmy::Patches::ArrayPatch::ClassMethods::Wrap
Public Class Methods
autotest()
click to toggle source
# 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