Sha256: 45f50d41965f00b1723a154e7b91272840e662bd82aec7a3caf1e183c2b47ac9
Contents?: true
Size: 632 Bytes
Versions: 1
Compression:
Stored size: 632 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/nano/comparable/at_least.rb # # Extracted Fri Oct 28 14:20:18 EDT 2005 # Unit Tools Reap Test Extractor # require 'nano/comparable/at_least.rb' require 'test/unit' class TCComparable < Test::Unit::TestCase def test_at_most assert_equal( 3, 3.at_most(4) ) assert_equal( 4, 4.at_most(4) ) assert_equal( 4, 5.at_most(4) ) end def test_at_least assert_equal( 4, 3.at_least(4) ) assert_equal( 4, 4.at_least(4) ) assert_equal( 5, 5.at_least(4) ) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
facets-0.9.0 | test/lib/nano/comparable/test_at_least.rb |