Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MiniTest --> Minitest #42

Merged
merged 1 commit into from
Dec 1, 2023
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
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
Loading