/vendor/gems/facets-2.4.5/test/core/array/test_stackable.rb
https://bitbucket.org/mediashelf/fedora-migrator · Ruby · 22 lines · 14 code · 7 blank · 1 comment · 0 complexity · f258a301133b77498a789e9a06521fbc MD5 · raw file
- # 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