@@ -25,7 +25,7 @@ make_test_repo() {
25
25
26
26
# #### 1
27
27
28
- start_test ' Check we fail when branch does not exist'
28
+ start_test ' Fail when branch does not exist'
29
29
make_test_repo
30
30
test_equal " Invalid ref: refs/heads/testbr
31
31
128" \
@@ -34,7 +34,7 @@ end_test
34
34
35
35
# #### 2
36
36
37
- start_test ' Check we fail when untracked files are in the working copy.'
37
+ start_test ' Fail when untracked files are in the working copy.'
38
38
make_test_repo
39
39
$git branch $branch
40
40
touch $repo /untracked
@@ -45,7 +45,7 @@ end_test
45
45
46
46
# #### 3
47
47
48
- start_test ' Check we fail when working copy is dirty'
48
+ start_test ' Fail when working copy is dirty'
49
49
make_test_repo
50
50
$git branch $branch
51
51
touch $repo /three
@@ -57,7 +57,7 @@ end_test
57
57
58
58
# #### 4
59
59
60
- start_test ' Check commit message'
60
+ start_test ' Commit message correct '
61
61
62
62
make_test_repo
63
63
$git branch $branch
@@ -73,7 +73,7 @@ end_test
73
73
74
74
# #### 5
75
75
76
- start_test ' Check commit '
76
+ start_test ' Commit data correct '
77
77
78
78
make_test_repo
79
79
$git branch $branch
@@ -92,7 +92,7 @@ end_test
92
92
93
93
# #### 6
94
94
95
- start_test ' Check commit with refs/heads/branchname '
95
+ start_test ' Commit branchname has refs/heads prefix '
96
96
97
97
make_test_repo
98
98
$git branch $branch
@@ -108,7 +108,7 @@ end_test
108
108
109
109
# #### 7
110
110
111
- start_test ' Check commit when script is run standalone '
111
+ start_test ' Run script standalone (instead of as git subcommand) '
112
112
113
113
make_test_repo
114
114
$git branch $branch
@@ -124,7 +124,7 @@ end_test
124
124
125
125
# #### 8
126
126
127
- start_test ' Check we do not commit if it would be an empty commit. '
127
+ start_test ' No commit if commit would be empty'
128
128
make_test_repo
129
129
$git branch $branch
130
130
echo bar > $files /one
@@ -138,7 +138,7 @@ end_test
138
138
139
139
# #### 9
140
140
141
- start_test ' Check reflog update '
141
+ start_test ' Reflog is updated '
142
142
make_test_repo
143
143
$git branch $branch
144
144
echo bar > $files /one
0 commit comments