Skip to content

Commit

Permalink
MiniTest --> Minitest (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
thbar authored Dec 1, 2023
1 parent 2aaed8d commit 53cce4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/support/assert_called.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module AssertCalled
def assert_called(klass, method, args, return_value = nil)
mock = MiniTest::Mock.new
mock = Minitest::Mock.new
mock.expect(:call, return_value, args)
klass.stub(method, mock) do
yield
Expand Down
2 changes: 1 addition & 1 deletion test/test_csv_source.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require "kiba-common/sources/csv"
require_relative "support/test_array_destination"

class TestCSVSource < MiniTest::Test
class TestCSVSource < Minitest::Test
TEST_FILENAME = "input.csv"

def setup
Expand Down
2 changes: 1 addition & 1 deletion test/test_lambda_destination.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require "kiba"
require "kiba-common/destinations/lambda"

class TestLambdaDestination < MiniTest::Test
class TestLambdaDestination < Minitest::Test
def test_lambda
accumulator = []
on_init_called = false
Expand Down

0 comments on commit 53cce4b

Please sign in to comment.