Skip to content

Commit

Permalink
Merge pull request #3445 from DataDog/tonycthsu/fix-minitest-detectio…
Browse files Browse the repository at this point in the history
…n-test
  • Loading branch information
marcotc committed Feb 7, 2024
2 parents e631bda + 8fa1830 commit 1511556
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions spec/datadog/core/environment/execution_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,14 @@

require 'minitest/autorun'

# MiniTest 5.22.1 requires a test to be defined, otherwise it will fail
# https://github.com/minitest/minitest/blob/master/History.rdoc#label-5.22.1+-2F+2024-02-06
Class.new(Minitest::Test) do
def test_it_does_something_useful
assert true
end
end

is_expected.to eq(true)
end
end
Expand Down

0 comments on commit 1511556

Please sign in to comment.