Skip to content

Commit 07a94dd

Browse files
committed
moving test files into test/units/
1 parent 5c59572 commit 07a94dd

22 files changed

+50
-30
lines changed

test/test_helper_units.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require 'test_helper'

test/test_access_token.rb renamed to test/units/test_access_token.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require File.expand_path('../test_helper', __FILE__)
1+
require File.expand_path('../../test_helper_units', __FILE__)
22

33
class TestAccessToken < Minitest::Test
44
def setup

test/test_action_controller_request_proxy.rb renamed to test/units/test_action_controller_request_proxy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require File.expand_path('../test_helper', __FILE__)
1+
require File.expand_path('../../test_helper_units', __FILE__)
22

33
require 'oauth/request_proxy/action_controller_request'
44

test/test_consumer.rb renamed to test/units/test_consumer.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require File.expand_path('../test_helper', __FILE__)
1+
require File.expand_path('../../test_helper_units', __FILE__)
22

33
require 'stringio'
44

test/test_curb_request_proxy.rb renamed to test/units/test_curb_request_proxy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require File.expand_path('../test_helper', __FILE__)
1+
require File.expand_path('../../test_helper_units', __FILE__)
22

33
begin
44

test/test_em_http_client.rb renamed to test/units/test_em_http_client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require File.expand_path('../test_helper', __FILE__)
1+
require File.expand_path('../../test_helper_units', __FILE__)
22
begin
33

44
require 'oauth/client/em_http'

test/test_em_http_request_proxy.rb renamed to test/units/test_em_http_request_proxy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require File.expand_path('../test_helper', __FILE__)
1+
require File.expand_path('../../test_helper_units', __FILE__)
22

33
begin
44

test/test_hmac_sha1.rb renamed to test/units/test_hmac_sha1.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require File.expand_path('../test_helper', __FILE__)
1+
require File.expand_path('../../test_helper_units', __FILE__)
22

33
class TestSignatureHmacSha1 < Minitest::Test
44
def test_that_hmac_sha1_implements_hmac_sha1

test/test_net_http_client.rb renamed to test/units/test_net_http_client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require File.expand_path('../test_helper', __FILE__)
1+
require File.expand_path('../../test_helper_units', __FILE__)
22

33
class NetHTTPClientTest < Minitest::Test
44

test/test_net_http_request_proxy.rb renamed to test/units/test_net_http_request_proxy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require File.expand_path('../test_helper', __FILE__)
1+
require File.expand_path('../../test_helper_units', __FILE__)
22

33
class NetHTTPRequestProxyTest < Minitest::Test
44

0 commit comments

Comments
 (0)