Sha256: 2b39e0ad8dfeba720fd881a301054c0ed5d779eb7907107e36570674cb73ee1f
Contents?: true
Size: 463 Bytes
Versions: 2
Compression:
Stored size: 463 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facet/comparable/cmp.rb # # Extracted Mon Mar 13 13:24:07 UTC 2006 # Unit Tools Reap Test Extractor # require 'facet/comparable/cmp.rb' require 'test/unit' class TCComparable < Test::Unit::TestCase def test_cmp assert_equal( -1, 3.cmp(4) ) assert_equal( 0, 3.cmp(3) ) assert_equal( 1, 3.cmp(2) ) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
facets-1.1.0 | test/lib/facet/comparable/test_cmp.rb |
facets-1.2.0 | test/lib/facet/comparable/test_cmp.rb |