Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ source "https://rubygems.org"
gem "rake"
gem "base64"
gem "dotenv"
gem "minitest", "~> 5.27"
gem "minitest", "~> 6.0"
gem "minitest-reporters"
gem "minitest-mock_expectations"
gem "vcr"
gem "webmock"
gem "cgi" # needed for Ruby 4.0 until http-cookie gem adds dependency

group :test do
gem "simplecov", require: false
Expand Down
16 changes: 10 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@ GEM
base64 (0.3.0)
bigdecimal (4.0.1)
builder (3.3.0)
cgi (0.5.1)
crack (1.0.1)
bigdecimal
rexml
docile (1.4.1)
domain_name (0.6.20240107)
dotenv (3.2.0)
ffi (1.17.3)
drb (2.2.3)
ffi (1.17.3-arm64-darwin)
ffi-compiler (1.3.2)
ffi (>= 1.15.5)
rake
Expand All @@ -35,14 +37,16 @@ GEM
llhttp-ffi (0.5.1)
ffi-compiler (~> 1.0)
rake (~> 13.0)
minitest (5.27.0)
minitest-mock_expectations (1.2.0)
minitest (6.0.2)
drb (~> 2.0)
prism (~> 1.5)
minitest-reporters (1.7.1)
ansi
builder
minitest (>= 5.0)
ruby-progressbar
public_suffix (7.0.0)
prism (1.9.0)
public_suffix (7.0.2)
rake (13.3.1)
rexml (3.4.4)
ruby-progressbar (1.13.0)
Expand All @@ -66,9 +70,9 @@ PLATFORMS

DEPENDENCIES
base64
cgi
dotenv
minitest (~> 5.27)
minitest-mock_expectations
minitest (~> 6.0)
minitest-reporters
paysafe!
rake
Expand Down
7 changes: 6 additions & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,16 @@
require 'base64'
require 'minitest/autorun'
require 'minitest/reporters'
require 'minitest/mock_expectations'
require 'webmock/minitest'
require 'vcr'
require 'dotenv/load'

# Remove this register_plugin when minitest-reporters is released with:
# https://github.com/minitest-reporters/minitest-reporters/pull/366
# https://github.com/minitest-reporters/minitest-reporters/pull/366#issuecomment-3731951673
require 'minitest/minitest_reporter_plugin'
Minitest.register_plugin :minitest_reporter

Minitest::Reporters.use!([Minitest::Reporters::SpecReporter.new])

VCR.configure do |c|
Expand Down