Skip to content

Commit 53cce4b

Browse files
authored
MiniTest --> Minitest (#42)
1 parent 2aaed8d commit 53cce4b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/support/assert_called.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module AssertCalled
22
def assert_called(klass, method, args, return_value = nil)
3-
mock = MiniTest::Mock.new
3+
mock = Minitest::Mock.new
44
mock.expect(:call, return_value, args)
55
klass.stub(method, mock) do
66
yield

test/test_csv_source.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require "kiba-common/sources/csv"
44
require_relative "support/test_array_destination"
55

6-
class TestCSVSource < MiniTest::Test
6+
class TestCSVSource < Minitest::Test
77
TEST_FILENAME = "input.csv"
88

99
def setup

test/test_lambda_destination.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require "kiba"
33
require "kiba-common/destinations/lambda"
44

5-
class TestLambdaDestination < MiniTest::Test
5+
class TestLambdaDestination < Minitest::Test
66
def test_lambda
77
accumulator = []
88
on_init_called = false

0 commit comments

Comments
 (0)