2009-02-04 21:26:08 +01:00
|
|
|
require 'rubygems'
|
2007-02-10 00:12:31 +01:00
|
|
|
require 'test/unit'
|
2010-05-25 19:45:45 +02:00
|
|
|
require 'empty_bool'
|
2009-02-28 02:23:00 +01:00
|
|
|
|
2009-08-04 17:16:03 +02:00
|
|
|
ENV['NO_RELOAD'] = '1'
|
2007-02-10 00:12:31 +01:00
|
|
|
|
2010-05-25 19:45:45 +02:00
|
|
|
$:.unshift File.expand_path('../../lib', __FILE__)
|
2007-02-10 00:12:31 +01:00
|
|
|
require 'active_support'
|
2009-02-04 21:26:08 +01:00
|
|
|
require 'active_support/test_case'
|
2007-02-10 00:12:31 +01:00
|
|
|
|
2009-02-04 21:26:08 +01:00
|
|
|
def uses_memcached(test_name)
|
|
|
|
require 'memcache'
|
|
|
|
MemCache.new('localhost').stats
|
2008-05-18 06:22:34 +02:00
|
|
|
yield
|
2009-02-04 21:26:08 +01:00
|
|
|
rescue MemCache::MemCacheError
|
|
|
|
$stderr.puts "Skipping #{test_name} tests. Start memcached and try again."
|
2008-10-27 07:47:01 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def with_kcode(code)
|
|
|
|
if RUBY_VERSION < '1.9'
|
|
|
|
begin
|
|
|
|
old_kcode, $KCODE = $KCODE, code
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
$KCODE = old_kcode
|
|
|
|
end
|
|
|
|
else
|
|
|
|
yield
|
|
|
|
end
|
|
|
|
end
|
2009-02-04 21:26:08 +01:00
|
|
|
|
|
|
|
# Show backtraces for deprecated behavior for quicker cleanup.
|
|
|
|
ActiveSupport::Deprecation.debug = true
|
|
|
|
|
|
|
|
if RUBY_VERSION < '1.9'
|
|
|
|
$KCODE = 'UTF8'
|
|
|
|
end
|