Skip to content

Commit 36005eb

Browse files
author
Jerry Cheung
committed
require_relative test_helper
1 parent 3e061e2 commit 36005eb

14 files changed

+14
-14
lines changed

test/ber/core_ext/test_array.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'test_helper'
1+
require_relative '../../test_helper'
22

33
class TestBERArrayExtension < Test::Unit::TestCase
44
def test_control_code_array

test/ber/core_ext/test_string.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'test_helper'
1+
require_relative '../../test_helper'
22

33
class TestBERStringExtension < Test::Unit::TestCase
44
def setup

test/ber/test_ber.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'test_helper'
1+
require_relative '../test_helper'
22

33
class TestBEREncoding < Test::Unit::TestCase
44
def test_empty_array

test/test_dn.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'test_helper'
1+
require_relative '../test_helper'
22
require 'net/ldap/dn'
33

44
class TestDN < Test::Unit::TestCase

test/test_entry.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'test_helper'
1+
require_relative '../test_helper'
22

33
class TestEntry < Test::Unit::TestCase
44
def setup

test/test_filter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'test_helper'
1+
require_relative '../test_helper'
22

33
class TestFilter < Test::Unit::TestCase
44
Filter = Net::LDAP::Filter

test/test_filter_parser.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# encoding: utf-8
2-
require 'test_helper'
2+
require_relative '../test_helper'
33

44
class TestFilterParser < Test::Unit::TestCase
55
def test_ascii

test/test_ldap_connection.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'test_helper'
1+
require_relative '../test_helper'
22

33
class TestLDAPConnection < Test::Unit::TestCase
44
def test_unresponsive_host

test/test_ldif.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# $Id: testldif.rb 61 2006-04-18 20:55:55Z blackhedd $
22

3-
require 'test_helper'
3+
require_relative '../test_helper'
44

55
require 'digest/sha1'
66
require 'base64'

test/test_password.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# $Id: testpsw.rb 72 2006-04-24 21:58:14Z blackhedd $
22

3-
require 'test_helper'
3+
require_relative '../test_helper'
44

55
class TestPassword < Test::Unit::TestCase
66

0 commit comments

Comments
 (0)