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

Bump minitest from 5.17.0 to 5.23.0 #42

Closed
wants to merge 2 commits into from
Closed
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 Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GEM
ansi (1.5.0)
ast (2.4.2)
builder (3.2.4)
minitest (5.17.0)
minitest (5.23.0)
minitest-reporters (1.6.1)
ansi
builder
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/command/branch_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module GitChain
module Commands
class BranchTest < MiniTest::Test
class BranchTest < Minitest::Test
include RepositoryTestHelper

def test_append
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/command/list_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module GitChain
module Commands
class ListTest < MiniTest::Test
class ListTest < Minitest::Test
include RepositoryTestHelper

def test_append
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/command/prune_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module GitChain
module Commands
class PruneTest < MiniTest::Test
class PruneTest < Minitest::Test
include RepositoryTestHelper

def test_clean_chain
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/command/push_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module GitChain
module Commands
class PushTest < MiniTest::Test
class PushTest < Minitest::Test
include RepositoryTestHelper

def test_push_nothing
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/command/rebase_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module GitChain
module Commands
class RebaseTest < MiniTest::Test
class RebaseTest < Minitest::Test
include RepositoryTestHelper

def test_rebasing_a_clean_chain
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/command/setup_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module GitChain
module Commands
class SetupTest < MiniTest::Test
class SetupTest < Minitest::Test
include RepositoryTestHelper

def test_chain_noop
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/command/teardown_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module GitChain
module Commands
class TeardownTest < MiniTest::Test
class TeardownTest < Minitest::Test
include RepositoryTestHelper

def test_tearing_down_a_clean_chain
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/entry_point_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require "test_helper"

module GitChain
class EntryPointTest < MiniTest::Test
class EntryPointTest < Minitest::Test
def test_commands
refute_nil(EntryPoint.commands["setup"])
end
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/fixtures_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require "test_helper"

module GitChain
class FixturesTest < MiniTest::Test
class FixturesTest < Minitest::Test
include RepositoryTestHelper

def test_with_test_repository
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/git_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require "test_helper"

module GitChain
class GitTest < MiniTest::Test
class GitTest < Minitest::Test
include RepositoryTestHelper

def test_chains
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/model/branch_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module GitChain
module Models
class BranchTest < MiniTest::Test
class BranchTest < Minitest::Test
include RepositoryTestHelper

def test_from_config
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/model/chain_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module GitChain
module Models
class ChainTest < MiniTest::Test
class ChainTest < Minitest::Test
include RepositoryTestHelper

def test_from_config
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/rebase_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require "test_helper"

module GitChain
class RebaseTest < MiniTest::Test
class RebaseTest < Minitest::Test
def test_rebase
assert(true)
end
Expand Down
2 changes: 1 addition & 1 deletion test/git_chain/util/github_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module GitChain
module Util
class GithubTest < MiniTest::Test
class GithubTest < Minitest::Test
def test_parse_url
%w(
[email protected]:Shopify/git-chain.git
Expand Down
2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
require "minitest/autorun"
require "minitest/reporters"

MiniTest::Reporters.use!
Minitest::Reporters.use!
CLI::UI.enable_color = true

require "tmpdir"
Expand Down
Loading