mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/psych/*: switching tests to use relative require.
[ruby-core:29104] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a828a658a4
commit
03399d9001
29 changed files with 29 additions and 29 deletions
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestAliasAndAnchor < TestCase
|
class TestAliasAndAnchor < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestArray < TestCase
|
class TestArray < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
###
|
###
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestClass < TestCase
|
class TestClass < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestCoder < TestCase
|
class TestCoder < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestDocument < TestCase
|
class TestDocument < TestCase
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestEmitter < TestCase
|
class TestEmitter < TestCase
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestEncoding < TestCase
|
class TestEncoding < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestException < TestCase
|
class TestException < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestHash < TestCase
|
class TestHash < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestJSONTree < TestCase
|
class TestJSONTree < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
###
|
###
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class Tagged
|
class Tagged
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestOmap < TestCase
|
class TestOmap < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestParser < TestCase
|
class TestParser < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
class TestPsych < Psych::TestCase
|
class TestPsych < Psych::TestCase
|
||||||
def test_dump_stream
|
def test_dump_stream
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestScalar < TestCase
|
class TestScalar < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestScalarScanner < TestCase
|
class TestScalarScanner < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestSerializeSubclasses < TestCase
|
class TestSerializeSubclasses < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestSet < TestCase
|
class TestSet < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestString < TestCase
|
class TestString < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
class PsychStructWithIvar < Struct.new(:foo)
|
class PsychStructWithIvar < Struct.new(:foo)
|
||||||
attr_reader :bar
|
attr_reader :bar
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestSymbol < TestCase
|
class TestSymbol < TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestToYamlProperties < MiniTest::Unit::TestCase
|
class TestToYamlProperties < MiniTest::Unit::TestCase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
class TestTreeBuilder < TestCase
|
class TestTreeBuilder < TestCase
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# vim:sw=4:ts=4
|
# vim:sw=4:ts=4
|
||||||
# $Id$
|
# $Id$
|
||||||
#
|
#
|
||||||
require 'test/psych/helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
# [ruby-core:01946]
|
# [ruby-core:01946]
|
||||||
module Psych_Tests
|
module Psych_Tests
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative '../helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
module Visitors
|
module Visitors
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative '../helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
module Visitors
|
module Visitors
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require 'test/psych/helper'
|
require_relative '../helper'
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
module Visitors
|
module Visitors
|
||||||
|
|
Loading…
Reference in a new issue