Sha256: 457f0800cc839c255cd176e1bacbb4e5fa02e6a6221fc8ba66632dc347a1b49a
Contents?: true
Size: 1.14 KB
Versions: 9
Compression:
Stored size: 1.14 KB
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ | # |_|\___||___/\__| # # for lib/facets/tuple.rb # # Extracted Mon Sep 03 16:23:08 -0700 2007 # w/ Test Extraction Ratchet # require 'facets/tuple.rb' require 'test/unit' class TC_Tuple < Test::Unit::TestCase def test_01 t1 = Tuple[1,2,3] t2 = Tuple[2,4,5] assert( t1 < t2 ) assert( t2 > t1 ) end def test_02 t1 = Tuple[1,2,3] a1 = t1.to_a assert( Array === a1 ) end def test_03 t1 = Tuple[1,2,3] t2 = Tuple[1,2,3] assert( t1.object_id === t2.object_id ) end def test_04 t1 = Tuple[1,2,3] t1 = t1 << 4 assert( Tuple === t1 ) t2 = Tuple[1,2,3,4] assert( t1.object_id == t2.object_id ) end def test_05 t1 = "1.2.3".to_t assert( Tuple === t1 ) t2 = Tuple[1,2,3] assert( t1.object_id == t2.object_id ) end def test_06 t1 = "1.2.3a".to_t assert( Tuple === t1 ) t2 = Tuple[1,2,'3a'] assert_equal( t2, t1 ) assert( t2.object_id == t1.object_id ) end end
Version data entries
9 entries across 9 versions & 1 rubygems