Sha256: 43ff3cbe0a8e29381f78d338dcd2b969fa317897e4b1851750c9adc2d96d40e3

Contents?: true

Size: 241 Bytes

Versions: 16

Compression:

Stored size: 241 Bytes

Contents

require 'facets/array/select'
require 'test/unit'

class TC_Array_Select < Test::Unit::TestCase

  # select!

  def test_select!
    a = [1,2,3,4,5,6,7,8,9,10]
    a.select!{ |e| e % 2 == 0 }
    assert_equal( [2,4,6,8,10], a)
  end

end



Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
facets-2.8.4 test/core/array/test_select.rb
facets-2.8.3 test/core/array/test_select.rb
facets-2.8.2 test/core/array/test_select.rb
facets-2.8.1 test/core/array/test_select.rb
facets-2.8.0 test/core/array/test_select.rb
facets-2.7.0 test/core/array/test_select.rb
facets-2.6.0 test/core/array/test_select.rb
facets-2.4.0 test/array/test_select.rb
facets-2.4.1 test/array/test_select.rb
facets-2.4.4 test/core/array/test_select.rb
facets-2.4.2 test/core/array/test_select.rb
facets-2.4.3 test/core/array/test_select.rb
facets-2.5.1 test/core/array/test_select.rb
facets-2.4.5 test/core/array/test_select.rb
facets-2.5.0 test/core/array/test_select.rb
facets-2.5.2 test/core/array/test_select.rb