Sha256: 831555d8e8022a650a30d5b94ca5069d51ffcfb887bfed50bdb9b83cfec06cc3
Contents?: true
Size: 352 Bytes
Versions: 19
Compression:
Stored size: 352 Bytes
Contents
# Test facets/array/stackable.rb require 'facets/array/stackable.rb' require 'test/unit' class TestArray < Test::Unit::TestCase def test_poke a = [2,3] assert_equal( [1,2,3], a.poke(1) ) assert_equal( [4,1,2,3], a.poke(4) ) end def test_pull a = [1,2,3] assert_equal( 1, a.pull ) assert_equal( [2,3], a ) end end
Version data entries
19 entries across 19 versions & 1 rubygems