Sha256: 25fe0fab9603daccbd67affa59a79c5362d7db539a7572e0d7d68a325a63cb16

Contents?: true

Size: 461 Bytes

Versions: 5

Compression:

Stored size: 461 Bytes

Contents

require 'rubygems'
require 'test/unit'
require 'shoulda'
require 'ruby-debug'

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

class Test::Unit::TestCase
  
  def assert_false(object, message="")
    assert_equal(false, object, message)
  end
  
  
  def random_letters(num, prefix = "", suffix = "")
    prefix + (0...num).map{65.+(rand(25)).chr}.join + suffix
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
google_apps_api-0.3.2 test/test_helper.rb
google_apps_api-0.3.1 test/test_helper.rb
google_apps_api-0.3.0 test/test_helper.rb
google_apps_api-0.2.2 test/test_helper.rb
google_apps_api-0.2.1 test/test_helper.rb