Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Jul 9, 2024
1 parent 1adcf45 commit c24fae3
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.2.2
ruby-3.3.0
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ gem 'rubocop-minitest'
gem 'rubocop-performance'

group :test do
gem 'minitest', '~> 5.10', '!= 5.10.2'
gem 'minitest'
gem 'minitest-stub-const'
gem 'mocha'
gem 'pry'
Expand Down
73 changes: 42 additions & 31 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,67 +1,78 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (6.1.7.5)
activesupport (7.1.3.4)
base64
bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
minitest (>= 5.1)
mutex_m
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
ast (2.4.2)
base64 (0.1.1)
base64 (0.2.0)
bigdecimal (3.1.8)
coderay (1.1.3)
concurrent-ruby (1.2.3)
concurrent-ruby (1.3.3)
connection_pool (2.4.1)
docile (1.4.0)
i18n (1.14.4)
drb (2.2.1)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
json (2.6.3)
json (2.7.2)
language_server-protocol (3.17.0.3)
mandate (0.3.0)
method_source (1.0.0)
minitest (5.19.0)
mandate (2.2.0)
method_source (1.1.0)
minitest (5.24.1)
minitest-stub-const (0.6)
mocha (1.11.2)
parallel (1.23.0)
parser (3.2.2.3)
mocha (2.4.0)
ruby2_keywords (>= 0.0.5)
mutex_m (0.2.0)
parallel (1.25.1)
parser (3.3.3.0)
ast (~> 2.4.1)
racc
pry (0.13.1)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
racc (1.7.1)
racc (1.8.0)
rainbow (3.1.1)
rake (13.0.1)
regexp_parser (2.8.1)
rexml (3.2.6)
rubocop (1.56.0)
base64 (~> 0.1.1)
rake (13.2.1)
regexp_parser (2.9.2)
rexml (3.3.1)
strscan
rubocop (1.64.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.2.3)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.1, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.29.0)
parser (>= 3.2.1.0)
rubocop-minitest (0.31.0)
rubocop (>= 1.39, < 2.0)
rubocop-performance (1.19.0)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-minitest (0.35.0)
rubocop (>= 1.61, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
rubocop-performance (1.21.1)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (1.13.0)
ruby2_keywords (0.0.5)
simplecov (0.17.1)
docile (~> 1.1)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
strscan (3.1.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.4.2)
zeitwerk (2.6.13)
unicode-display_width (2.5.0)

PLATFORMS
ruby
Expand All @@ -70,7 +81,7 @@ DEPENDENCIES
activesupport
json
mandate
minitest (~> 5.10, != 5.10.2)
minitest
minitest-stub-const
mocha
parser
Expand Down
2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

require "minitest/autorun"
require 'minitest/pride'
require "mocha/setup"
require "mocha/minitest"

class Minitest::Test
SAFE_WRITE_PATH = Pathname.new('/tmp/output')
Expand Down

0 comments on commit c24fae3

Please sign in to comment.