Skip to content

Commit

Permalink
Merge pull request #126 from pepabo/update-to-minitest-5
Browse files Browse the repository at this point in the history
Update to Minitest 5.10+ and Upgrade Supported Ruby Versions
  • Loading branch information
kenchan authored May 19, 2024
2 parents c1f88dc + 004099f commit e601e16
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: [2.4, 2.5, 2.6, 2.7, 3.0]
ruby-version: ['3.0', '3.1', '3.2', '3.3', '3.4.0-preview1']

steps:
- uses: actions/checkout@v2

- uses: ruby/setup-ruby@v1.63.0
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'test_helper'

class RemoteEpsilonConvenienceStoreGatewayTest < MiniTest::Test
class RemoteEpsilonConvenienceStoreGatewayTest < Minitest::Test
include SamplePaymentMethods

def gateway
Expand Down
2 changes: 1 addition & 1 deletion test/remote/gateways/remote_epsilon_gmo_id_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'test_helper'

class RemoteEpsilonGmoIdGatewayTest < MiniTest::Test
class RemoteEpsilonGmoIdGatewayTest < Minitest::Test
include SamplePaymentMethods

def gateway
Expand Down
2 changes: 1 addition & 1 deletion test/remote/gateways/remote_epsilon_link_payment_test.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
require 'test_helper'
class RemoteEpsilonLinkPaymentTest < MiniTest::Test
class RemoteEpsilonLinkPaymentTest < Minitest::Test
include SamplePaymentMethods

def gateway
Expand Down
2 changes: 1 addition & 1 deletion test/remote/gateways/remote_epsilon_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'test_helper'

class RemoteEpsilonGatewayTest < MiniTest::Test
class RemoteEpsilonGatewayTest < Minitest::Test
include SamplePaymentMethods

def gateway
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'test_helper'

class RemoteEpsilonVirtualAccountGatewayTest < MiniTest::Test
class RemoteEpsilonVirtualAccountGatewayTest < Minitest::Test
include SamplePaymentMethods

def gateway
Expand Down
2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def valid_three_d_secure_card
last_name: 'YAMADA',
number: '4123451111111117',
month: '12',
year: '2023',
year: Time.now.year + 1,
)
end

Expand Down
2 changes: 1 addition & 1 deletion test/unit/billing/convenience_store_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'test_helper'

class EpsilonConvenienceStoreTest < MiniTest::Test
class EpsilonConvenienceStoreTest < Minitest::Test
def test_blank_parameter_generate_error
convenience_store = ActiveMerchant::Billing::ConvenienceStore.new(code: "",
full_name_kana: "",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/gateways/epsilon_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'test_helper'

class EpsilonGatewayTest < MiniTest::Test
class EpsilonGatewayTest < Minitest::Test
include SamplePaymentMethods

def test_set_proxy_address_and_port
Expand Down

0 comments on commit e601e16

Please sign in to comment.