Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-06-07 15:42:48 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-06-07 15:52:52 +0300
commitf5b9dfab6967939054fc652a0d1b702f2ee566c7 (patch)
tree640faba8e7ec2594aec039927feb767d8d684201
parentf1cc331e80b2d94f6917ebd3923f0cb09475ff1f (diff)
operations: Modernize test names in branches tests
Modernize test names to match our current coding style more closely.
-rw-r--r--internal/gitaly/service/operations/branches_test.go20
1 files changed, 10 insertions, 10 deletions
diff --git a/internal/gitaly/service/operations/branches_test.go b/internal/gitaly/service/operations/branches_test.go
index 65ed449e9..2fd1fe3d6 100644
--- a/internal/gitaly/service/operations/branches_test.go
+++ b/internal/gitaly/service/operations/branches_test.go
@@ -35,7 +35,7 @@ func (s *testTransactionServer) VoteTransaction(ctx context.Context, in *gitalyp
}, nil
}
-func TestSuccessfulCreateBranchRequest(t *testing.T) {
+func TestUserCreateBranch_successful(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -112,7 +112,7 @@ func TestSuccessfulCreateBranchRequest(t *testing.T) {
}
}
-func TestUserCreateBranchWithTransaction(t *testing.T) {
+func TestUserCreateBranch_transactions(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -186,7 +186,7 @@ func TestUserCreateBranchWithTransaction(t *testing.T) {
}
}
-func TestSuccessfulGitHooksForUserCreateBranchRequest(t *testing.T) {
+func TestUserCreateBranch_hook(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -216,7 +216,7 @@ func TestSuccessfulGitHooksForUserCreateBranchRequest(t *testing.T) {
}
}
-func TestSuccessfulCreateBranchRequestWithStartPointRefPrefix(t *testing.T) {
+func TestUserCreateBranch_startPoint(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -289,7 +289,7 @@ func TestSuccessfulCreateBranchRequestWithStartPointRefPrefix(t *testing.T) {
}
}
-func TestFailedUserCreateBranchDueToHooks(t *testing.T) {
+func TestUserCreateBranch_hookFailure(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -314,7 +314,7 @@ func TestFailedUserCreateBranchDueToHooks(t *testing.T) {
}
}
-func TestFailedUserCreateBranchRequest(t *testing.T) {
+func TestUserCreateBranch_failure(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -374,7 +374,7 @@ func TestFailedUserCreateBranchRequest(t *testing.T) {
}
}
-func TestSuccessfulUserDeleteBranchRequest(t *testing.T) {
+func TestUserDeleteBranch_success(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -429,7 +429,7 @@ func TestSuccessfulUserDeleteBranchRequest(t *testing.T) {
}
}
-func TestSuccessfulGitHooksForUserDeleteBranchRequest(t *testing.T) {
+func TestUserDeleteBranch_hooks(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -510,7 +510,7 @@ func TestUserDeleteBranch_transaction(t *testing.T) {
require.Equal(t, 2, transactionServer.called)
}
-func TestFailedUserDeleteBranchDueToValidation(t *testing.T) {
+func TestUserDeleteBranch_invalidArgument(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -561,7 +561,7 @@ func TestFailedUserDeleteBranchDueToValidation(t *testing.T) {
}
}
-func TestFailedUserDeleteBranchDueToHooks(t *testing.T) {
+func TestUserDeleteBranch_hookFailure(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)