Sha256: 0b51740d628a49aa974ba2e80b21ad04bb3f8c337409f4e6153ddd773735d7db
Contents?: true
Size: 439 Bytes
Versions: 1
Compression:
Stored size: 439 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/array/pull.rb # # Extracted Wed Aug 23 18:22:53 EDT 2006 # Unit Tools Reap Test Extractor # require 'facets/core/array/pull.rb' require 'test/unit' class TCArray < Test::Unit::TestCase def test_pull a = [1,2,3] assert_equal( 1, a.pull ) assert_equal( [2,3], a ) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
facets-1.7.30 | test/lib/facets/core/array/test_pull.rb |