Sha256: aaecd0c85ab2af2dc6bb953efd46babcc2cabaf4bdc927c7868be1dd516be380

Contents?: true

Size: 484 Bytes

Versions: 1

Compression:

Stored size: 484 Bytes

Contents

#  _____         _
# |_   _|__  ___| |_
#   | |/ _ \/ __| __|
#   | |  __/\__ \ |_
#   |_|\___||___/\__|
#
# for lib/facets/core/string/each_char.rb
#
# Extracted Wed Aug 23 18:22:53 EDT 2006
# Unit Tools Reap Test Extractor
#

require 'facets/core/string/each_char.rb'


  require 'test/unit'

  class TCString < Test::Unit::TestCase

    def test_each_char
      a = []
      i = "this"
      i.each_char{ |w| a << w }
      assert_equal( ['t', 'h', 'i', 's'], a )
    end

  end


Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
facets-1.7.30 test/lib/facets/core/string/test_each_char.rb