From d79a010976785ec42ed2b567c0f8a2e0fa7d15bf Mon Sep 17 00:00:00 2001 From: Santiago Pastorino Date: Sun, 22 Aug 2010 02:23:13 -0300 Subject: Set default_internal and default_external on AS for testing purposes --- activesupport/test/abstract_unit.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'activesupport/test/abstract_unit.rb') diff --git a/activesupport/test/abstract_unit.rb b/activesupport/test/abstract_unit.rb index 6db21f9e12..83b25de332 100644 --- a/activesupport/test/abstract_unit.rb +++ b/activesupport/test/abstract_unit.rb @@ -10,6 +10,14 @@ end lib = File.expand_path("#{File.dirname(__FILE__)}/../lib") $:.unshift(lib) unless $:.include?('lib') || $:.include?(lib) +require 'active_support/core_ext/string/encoding' +if "ruby".encoding_aware? + # These are the normal settings that will be set up by Railties + # TODO: Have these tests support other combinations of these values + Encoding.default_internal = "UTF-8" + Encoding.default_external = "UTF-8" +end + require 'test/unit' require 'active_support/core_ext/kernel/reporting' require 'empty_bool' -- cgit v1.2.3