Skip to content

Commit cbed49f

Browse files
committed
add test folder and file for visual studio repository
1 parent 3acdc1f commit cbed49f

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

test/container-structure-test.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
containerRunOptions:
2+
user: "jovyan"
3+
4+
commandTests:
5+
- name: "whoami"
6+
command: "whoami"
7+
expectedOutput: ["jovyan"]
8+
9+
- name: "user"
10+
command: "id"
11+
args: ["--user", "jovyan"]
12+
expectedOutput: ["1000"]
13+
14+
- name: "groups"
15+
command: "id"
16+
args: ["--groups", "jovyan"]
17+
expectedOutput: ["100"]
18+
19+
- name: "conda"
20+
command: "conda"
21+
args: ["info"]
22+
expectedOutput: [".*active environment.*"]
23+
24+
- name: "aws"
25+
command: "aws"
26+
args: ["--version"]
27+
expectedOutput: ["aws-cli/2.*"]

0 commit comments

Comments
 (0)