Sha256: 327379b8ba7c4f1a95b34fce83de7c2e0af3c4476f0d4535c957a74748d6dfb7

Contents?: true

Size: 566 Bytes

Versions: 2

Compression:

Stored size: 566 Bytes

Contents

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

$LOAD_PATH.unshift File.dirname(__FILE__) + "/../lib"
$LOAD_PATH.unshift File.dirname(__FILE__) + "/../../memcache/lib"

require 'cache_version'

class Test::Unit::TestCase
end

CACHE = Memcache.new(:servers => 'localhost')
ActiveRecord::Base.establish_connection(
  :adapter  => "postgresql",
  :host     => "localhost",
  :username => "postgres",
  :password => "",
  :database => "test"
)
ActiveRecord::Migration.verbose = false
ActiveRecord::Base.connection.client_min_messages = 'panic'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cache_version-0.9.5 test/test_helper.rb
cache_version-0.9.4 test/test_helper.rb