@@ -47,11 +47,11 @@ circleci-matrix() {
47
47
}
48
48
49
49
@test " load config by name" {
50
- circleci-matrix --config another-config .yml | grep " C 3"
50
+ circleci-matrix --config another_config .yml | grep " C 3"
51
51
}
52
52
53
53
@test " load config by name (short option)" {
54
- circleci-matrix -c another-config .yml | grep " C 3"
54
+ circleci-matrix -c another_config .yml | grep " C 3"
55
55
}
56
56
57
57
@test " option: --version" {
@@ -67,7 +67,7 @@ circleci-matrix() {
67
67
}
68
68
69
69
@test " should not leak private stuff" {
70
- circleci-matrix --config no-private-leak .yml
70
+ circleci-matrix --config no_private_leak .yml
71
71
}
72
72
73
73
@test " quotation" {
@@ -214,19 +214,19 @@ circleci-matrix() {
214
214
}
215
215
216
216
@test " export circleci | node total" {
217
- CIRCLE_NODE_TOTAL=5 circleci-matrix --config export-circleci .yml | grep " Node Total: 5"
217
+ CIRCLE_NODE_TOTAL=5 circleci-matrix --config export_circleci .yml | grep " Node Total: 5"
218
218
}
219
219
220
220
@test " export circleci | node index" {
221
- CIRCLE_NODE_INDEX=0 circleci-matrix --config export-circleci .yml | grep " Node Index: 0"
221
+ CIRCLE_NODE_INDEX=0 circleci-matrix --config export_circleci .yml | grep " Node Index: 0"
222
222
}
223
223
224
224
@test " export circleci | ensure default node total" {
225
- circleci-matrix --config export-circleci .yml | grep " Node Total: 1"
225
+ circleci-matrix --config export_circleci .yml | grep " Node Total: 1"
226
226
}
227
227
228
228
@test " export circleci | ensure default node index" {
229
- circleci-matrix --config export-circleci .yml | grep " Node Index: 0"
229
+ circleci-matrix --config export_circleci .yml | grep " Node Index: 0"
230
230
}
231
231
232
232
@test " missing config file | exit code should be 1" {
0 commit comments