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
|
||||
class TestAliasAndAnchor < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestArray < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
###
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestClass < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestCoder < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestDocument < TestCase
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestEmitter < TestCase
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestEncoding < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestException < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestHash < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestJSONTree < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
###
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class Tagged
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestOmap < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestParser < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
class TestPsych < Psych::TestCase
|
||||
def test_dump_stream
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestScalar < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestScalarScanner < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestSerializeSubclasses < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestSet < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestString < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
class PsychStructWithIvar < Struct.new(:foo)
|
||||
attr_reader :bar
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestSymbol < TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestToYamlProperties < MiniTest::Unit::TestCase
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
module Psych
|
||||
class TestTreeBuilder < TestCase
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# vim:sw=4:ts=4
|
||||
# $Id$
|
||||
#
|
||||
require 'test/psych/helper'
|
||||
require_relative 'helper'
|
||||
|
||||
# [ruby-core:01946]
|
||||
module Psych_Tests
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative '../helper'
|
||||
|
||||
module Psych
|
||||
module Visitors
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative '../helper'
|
||||
|
||||
module Psych
|
||||
module Visitors
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'test/psych/helper'
|
||||
require_relative '../helper'
|
||||
|
||||
module Psych
|
||||
module Visitors
|
||||
|
|
Loading…
Reference in a new issue