Sha256: ef1bc279b0a3d1c0a428ae78fd9a3b1e35e3e204e2048b2a3ecd79926ec4668f

Contents?: true

Size: 449 Bytes

Versions: 10

Compression:

Stored size: 449 Bytes

Contents

require 'rubygems'
require 'test/unit'
require 'shoulda'

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

class Test::Unit::TestCase
  # Replace these with your test instance
  URL   = "http://localhost:8080/sugarcrm"
  USER  = "admin"
  PASS  = 'letmein' 

  def setup_connection
    SugarCRM::Base.establish_connection(URL, USER, PASS, {:debug => false})
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
sugarcrm-0.9.9 test/helper.rb
sugarcrm-0.9.8 test/helper.rb
sugarcrm-0.9.7 test/helper.rb
sugarcrm-0.9.6 test/helper.rb
sugarcrm-0.9.5 test/helper.rb
sugarcrm-0.9.4 test/helper.rb
sugarcrm-0.9.3 test/helper.rb
sugarcrm-0.9.2 test/helper.rb
sugarcrm-0.9.1 test/helper.rb
sugarcrm-0.9.0 test/helper.rb