# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/array/last_index.rb # # Extracted Tue Jul 25 10:07:15 EDT 2006 # Unit Tools Reap Test Extractor # require 'facets/core/array/last_index.rb' require 'test/unit' class TCArray < Test::Unit::TestCase def test_last_index assert_equal( [1,2,3,4,5].last_index, 4 ) end end