ruby-changes:27892
From: xibbar <ko1@a...>
Date: Tue, 26 Mar 2013 23:55:19 +0900 (JST)
Subject: [ruby-changes:27892] xibbar:r39944 (trunk): * test/psych/test_*.rb: use require_relative to require local library
xibbar 2013-03-26 23:55:04 +0900 (Tue, 26 Mar 2013) New Revision: 39944 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=39944 Log: * test/psych/test_*.rb: use require_relative to require local library Modified files: trunk/test/psych/test_alias_and_anchor.rb trunk/test/psych/test_array.rb trunk/test/psych/test_boolean.rb trunk/test/psych/test_class.rb trunk/test/psych/test_coder.rb trunk/test/psych/test_date_time.rb trunk/test/psych/test_deprecated.rb trunk/test/psych/test_document.rb trunk/test/psych/test_emitter.rb trunk/test/psych/test_encoding.rb trunk/test/psych/test_engine_manager.rb trunk/test/psych/test_exception.rb trunk/test/psych/test_hash.rb trunk/test/psych/test_json_tree.rb trunk/test/psych/test_merge_keys.rb trunk/test/psych/test_nil.rb trunk/test/psych/test_null.rb trunk/test/psych/test_numeric.rb trunk/test/psych/test_object.rb trunk/test/psych/test_object_references.rb trunk/test/psych/test_omap.rb trunk/test/psych/test_parser.rb trunk/test/psych/test_psych.rb trunk/test/psych/test_scalar.rb trunk/test/psych/test_scalar_scanner.rb trunk/test/psych/test_serialize_subclasses.rb trunk/test/psych/test_set.rb trunk/test/psych/test_stream.rb trunk/test/psych/test_string.rb trunk/test/psych/test_struct.rb trunk/test/psych/test_symbol.rb trunk/test/psych/test_tainted.rb trunk/test/psych/test_to_yaml_properties.rb trunk/test/psych/test_tree_builder.rb trunk/test/psych/test_yaml.rb trunk/test/psych/test_yamldbm.rb trunk/test/psych/test_yamlstore.rb Index: test/psych/test_serialize_subclasses.rb =================================================================== --- test/psych/test_serialize_subclasses.rb (revision 39943) +++ test/psych/test_serialize_subclasses.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_serialize_subclasses.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestSerializeSubclasses < TestCase Index: test/psych/test_scalar_scanner.rb =================================================================== --- test/psych/test_scalar_scanner.rb (revision 39943) +++ test/psych/test_scalar_scanner.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_scalar_scanner.rb#L1 -require 'psych/helper' +require_relative 'helper' require 'date' module Psych Index: test/psych/test_yamlstore.rb =================================================================== --- test/psych/test_yamlstore.rb (revision 39943) +++ test/psych/test_yamlstore.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_yamlstore.rb#L1 -require 'psych/helper' +require_relative 'helper' require 'yaml/store' require 'tmpdir' Index: test/psych/test_to_yaml_properties.rb =================================================================== --- test/psych/test_to_yaml_properties.rb (revision 39943) +++ test/psych/test_to_yaml_properties.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_to_yaml_properties.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestToYamlProperties < MiniTest::Unit::TestCase Index: test/psych/test_nil.rb =================================================================== --- test/psych/test_nil.rb (revision 39943) +++ test/psych/test_nil.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_nil.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestNil < TestCase Index: test/psych/test_yamldbm.rb =================================================================== --- test/psych/test_yamldbm.rb (revision 39943) +++ test/psych/test_yamldbm.rb (revision 39944) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_yamldbm.rb#L1 # -*- coding: UTF-8 -*- -require 'psych/helper' +require_relative 'helper' require 'tmpdir' begin Index: test/psych/test_psych.rb =================================================================== --- test/psych/test_psych.rb (revision 39943) +++ test/psych/test_psych.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_psych.rb#L1 -require 'psych/helper' +require_relative 'helper' require 'stringio' require 'tempfile' Index: test/psych/test_encoding.rb =================================================================== --- test/psych/test_encoding.rb (revision 39943) +++ test/psych/test_encoding.rb (revision 39944) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_encoding.rb#L1 # -*- coding: utf-8 -*- -require 'psych/helper' +require_relative 'helper' module Psych class TestEncoding < TestCase Index: test/psych/test_tainted.rb =================================================================== --- test/psych/test_tainted.rb (revision 39943) +++ test/psych/test_tainted.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_tainted.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestStringTainted < TestCase Index: test/psych/test_date_time.rb =================================================================== --- test/psych/test_date_time.rb (revision 39943) +++ test/psych/test_date_time.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_date_time.rb#L1 -require 'psych/helper' +require_relative 'helper' require 'date' module Psych Index: test/psych/test_engine_manager.rb =================================================================== --- test/psych/test_engine_manager.rb (revision 39943) +++ test/psych/test_engine_manager.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_engine_manager.rb#L1 -require 'psych/helper' +require_relative 'helper' require 'yaml' module Psych Index: test/psych/test_symbol.rb =================================================================== --- test/psych/test_symbol.rb (revision 39943) +++ test/psych/test_symbol.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_symbol.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestSymbol < TestCase Index: test/psych/test_tree_builder.rb =================================================================== --- test/psych/test_tree_builder.rb (revision 39943) +++ test/psych/test_tree_builder.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_tree_builder.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestTreeBuilder < TestCase Index: test/psych/test_document.rb =================================================================== --- test/psych/test_document.rb (revision 39943) +++ test/psych/test_document.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_document.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestDocument < TestCase Index: test/psych/test_array.rb =================================================================== --- test/psych/test_array.rb (revision 39943) +++ test/psych/test_array.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_array.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestArray < TestCase Index: test/psych/test_boolean.rb =================================================================== --- test/psych/test_boolean.rb (revision 39943) +++ test/psych/test_boolean.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_boolean.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych ### Index: test/psych/test_hash.rb =================================================================== --- test/psych/test_hash.rb (revision 39943) +++ test/psych/test_hash.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_hash.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestHash < TestCase Index: test/psych/test_struct.rb =================================================================== --- test/psych/test_struct.rb (revision 39943) +++ test/psych/test_struct.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_struct.rb#L1 -require 'psych/helper' +require_relative 'helper' class PsychStructWithIvar < Struct.new(:foo) attr_reader :bar Index: test/psych/test_json_tree.rb =================================================================== --- test/psych/test_json_tree.rb (revision 39943) +++ test/psych/test_json_tree.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_json_tree.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestJSONTree < TestCase Index: test/psych/test_merge_keys.rb =================================================================== --- test/psych/test_merge_keys.rb (revision 39943) +++ test/psych/test_merge_keys.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_merge_keys.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestMergeKeys < TestCase Index: test/psych/test_set.rb =================================================================== --- test/psych/test_set.rb (revision 39943) +++ test/psych/test_set.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_set.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestSet < TestCase Index: test/psych/test_stream.rb =================================================================== --- test/psych/test_stream.rb (revision 39943) +++ test/psych/test_stream.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_stream.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestStream < TestCase Index: test/psych/test_coder.rb =================================================================== --- test/psych/test_coder.rb (revision 39943) +++ test/psych/test_coder.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_coder.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestCoder < TestCase Index: test/psych/test_omap.rb =================================================================== --- test/psych/test_omap.rb (revision 39943) +++ test/psych/test_omap.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_omap.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestOmap < TestCase Index: test/psych/test_parser.rb =================================================================== --- test/psych/test_parser.rb (revision 39943) +++ test/psych/test_parser.rb (revision 39944) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_parser.rb#L1 # coding: utf-8 -require 'psych/helper' +require_relative 'helper' module Psych class TestParser < TestCase Index: test/psych/test_exception.rb =================================================================== --- test/psych/test_exception.rb (revision 39943) +++ test/psych/test_exception.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_exception.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestException < TestCase Index: test/psych/test_deprecated.rb =================================================================== --- test/psych/test_deprecated.rb (revision 39943) +++ test/psych/test_deprecated.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_deprecated.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestDeprecated < TestCase Index: test/psych/test_numeric.rb =================================================================== --- test/psych/test_numeric.rb (revision 39943) +++ test/psych/test_numeric.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_numeric.rb#L1 -require 'psych/helper' +require_relative 'helper' require 'bigdecimal' module Psych Index: test/psych/test_yaml.rb =================================================================== --- test/psych/test_yaml.rb (revision 39943) +++ test/psych/test_yaml.rb (revision 39944) @@ -2,7 +2,7 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_yaml.rb#L2 # vim:sw=4:ts=4 # $Id$ # -require 'psych/helper' +require_relative 'helper' require 'ostruct' # [ruby-core:01946] Index: test/psych/test_scalar.rb =================================================================== --- test/psych/test_scalar.rb (revision 39943) +++ test/psych/test_scalar.rb (revision 39944) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_scalar.rb#L1 # -*- coding: utf-8 -*- -require 'psych/helper' +require_relative 'helper' module Psych class TestScalar < TestCase Index: test/psych/test_alias_and_anchor.rb =================================================================== --- test/psych/test_alias_and_anchor.rb (revision 39943) +++ test/psych/test_alias_and_anchor.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_alias_and_anchor.rb#L1 -require 'psych/helper' +require_relative 'helper' class ObjectWithInstanceVariables attr_accessor :var1, :var2 Index: test/psych/test_class.rb =================================================================== --- test/psych/test_class.rb (revision 39943) +++ test/psych/test_class.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_class.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestClass < TestCase Index: test/psych/test_object.rb =================================================================== --- test/psych/test_object.rb (revision 39943) +++ test/psych/test_object.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_object.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class Tagged Index: test/psych/test_string.rb =================================================================== --- test/psych/test_string.rb (revision 39943) +++ test/psych/test_string.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_string.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestString < TestCase Index: test/psych/test_object_references.rb =================================================================== --- test/psych/test_object_references.rb (revision 39943) +++ test/psych/test_object_references.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_object_references.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych class TestObjectReferences < TestCase Index: test/psych/test_emitter.rb =================================================================== --- test/psych/test_emitter.rb (revision 39943) +++ test/psych/test_emitter.rb (revision 39944) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_emitter.rb#L1 # -*- coding: utf-8 -*- -require 'psych/helper' +require_relative 'helper' module Psych class TestEmitter < TestCase Index: test/psych/test_null.rb =================================================================== --- test/psych/test_null.rb (revision 39943) +++ test/psych/test_null.rb (revision 39944) @@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/test/psych/test_null.rb#L1 -require 'psych/helper' +require_relative 'helper' module Psych ### -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/