Skip to content
This repository was archived by the owner on Nov 29, 2018. It is now read-only.

Commit 0af8ed3

Browse files
consistent naming scheme for files in tests/
1 parent b2619bd commit 0af8ed3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/run.bats

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ circleci-matrix() {
4747
}
4848

4949
@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"
5151
}
5252

5353
@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"
5555
}
5656

5757
@test "option: --version" {
@@ -67,7 +67,7 @@ circleci-matrix() {
6767
}
6868

6969
@test "should not leak private stuff" {
70-
circleci-matrix --config no-private-leak.yml
70+
circleci-matrix --config no_private_leak.yml
7171
}
7272

7373
@test "quotation" {
@@ -214,19 +214,19 @@ circleci-matrix() {
214214
}
215215

216216
@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"
218218
}
219219

220220
@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"
222222
}
223223

224224
@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"
226226
}
227227

228228
@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"
230230
}
231231

232232
@test "missing config file | exit code should be 1" {

0 commit comments

Comments
 (0)