Sha256: 80dcee8abdeae623aeed42e959d6ba15d5457e3562d6dc4db3f647d349b8920e
Contents?: true
Size: 980 Bytes
Versions: 1
Compression:
Stored size: 980 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/more/tuple.rb # # Extracted Mon Jun 05 08:14:30 EDT 2006 # Unit Tools Reap Test Extractor # require 'facets/more/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 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
facets-1.4.0 | test/lib/facets/more/test_tuple.rb |