Sha256: 79b80b493931892e7b190652b9b9839f9cf1e804df9957bd26276a35caeb6de6

Contents?: true

Size: 268 Bytes

Versions: 26

Compression:

Stored size: 268 Bytes

Contents

# require 'rubygems'
require 'test/unit'

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

require 'rubylabs'

class Test::Unit::TestCase
  
  def max(a, b)
    return (a > b) ? a : b
  end
  
  def min(a, b)
    return (a < b) ? a : b
  end
  
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
rubylabs-1.0.2 test/test_helper.rb
rubylabs-1.0.1 test/test_helper.rb
rubylabs-1.0.0 test/test_helper.rb
rubylabs-0.9.8 test/test_helper.rb
rubylabs-0.9.7 test/test_helper.rb
rubylabs-0.9.6 test/test_helper.rb
rubylabs-0.9.5 test/test_helper.rb
rubylabs-0.9.4 test/test_helper.rb
rubylabs-0.9.3 test/test_helper.rb
rubylabs-0.9.2 test/test_helper.rb
rubylabs-0.9.1 test/test_helper.rb
rubylabs-0.9.0 test/test_helper.rb
rubylabs-0.8.3 test/test_helper.rb
rubylabs-0.8.2 test/test_helper.rb
rubylabs-0.8.1 test/test_helper.rb
rubylabs-0.8.0 test/test_helper.rb
rubylabs-0.7.5 test/test_helper.rb
rubylabs-0.7.4 test/test_helper.rb
rubylabs-0.7.3 test/test_helper.rb
rubylabs-0.7.2 test/test_helper.rb