File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 strategy :
99 fail-fast : false
1010 matrix :
11- ruby : [2.6, 2.7 ]
11+ ruby : [3.3, 3.4, 4.0 ]
1212
1313 steps :
1414 - uses : actions/checkout@v2
Original file line number Diff line number Diff line change 1- ruby-2.7.4
1+ 3.4.5
Original file line number Diff line number Diff line change 1919require 'business_central/exceptions'
2020require 'business_central/client'
2121require 'business_central/web_service'
22+ require 'business_central/version'
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ def test_authorize_throws_exception
8484 body : { error : 'unknown error' } . to_json
8585 )
8686
87- mock = MiniTest ::Mock . new
87+ mock = Minitest ::Mock . new
8888 def mock . authorize_url ( _arguments )
8989 response = Faraday . get ( BusinessCentral ::Client ::DEFAULT_LOGIN_URL )
9090 response = OAuth2 ::Response . new ( response )
@@ -106,7 +106,7 @@ def test_request_token_throws_exception
106106 body : { error : 'token error' } . to_json
107107 )
108108
109- mock = MiniTest ::Mock . new
109+ mock = Minitest ::Mock . new
110110 def mock . get_token ( *_params )
111111 response = Faraday . get ( BusinessCentral ::Client ::DEFAULT_URL )
112112 response = OAuth2 ::Response . new ( response )
You can’t perform that action at this time.
0 commit comments