38 lines
733 B
Ruby
38 lines
733 B
Ruby
require 'rubygems'
|
|
require 'test/unit'
|
|
require 'empty_bool'
|
|
|
|
ENV['NO_RELOAD'] = '1'
|
|
|
|
$:.unshift File.expand_path('../../lib', __FILE__)
|
|
require 'active_support'
|
|
require 'active_support/test_case'
|
|
|
|
def uses_memcached(test_name)
|
|
require 'memcache'
|
|
MemCache.new('localhost').stats
|
|
yield
|
|
rescue MemCache::MemCacheError
|
|
$stderr.puts "Skipping #{test_name} tests. Start memcached and try again."
|
|
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
|
|
|
|
# Show backtraces for deprecated behavior for quicker cleanup.
|
|
ActiveSupport::Deprecation.debug = true
|
|
|
|
if RUBY_VERSION < '1.9'
|
|
$KCODE = 'UTF8'
|
|
end
|