Sha256: 2dfbc1264fef9a90ee0c38bc2ad1b881d4926d0b0ef1f54320507ff91639a9d5
Contents?: true
Size: 439 Bytes
Versions: 1
Compression:
Stored size: 439 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/array/pull.rb # # Extracted Tue Jul 25 10:07:15 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.0 | test/lib/facets/core/array/test_pull.rb |