File tree Expand file tree Collapse file tree 2 files changed +26
-3
lines changed Expand file tree Collapse file tree 2 files changed +26
-3
lines changed Original file line number Diff line number Diff line change
1
+ run "plan_with_required_vars" {
2
+ command = plan
3
+
4
+ variables {
5
+ agent_id = " example-agent-id"
6
+ }
7
+ }
8
+
9
+ run "app_url_uses_port" {
10
+ command = plan
11
+
12
+ variables {
13
+ agent_id = " example-agent-id"
14
+ port = 19999
15
+ }
16
+
17
+ assert {
18
+ condition = resource. coder_app . MODULE_NAME . url == " http://localhost:19999"
19
+ error_message = " Expected MODULE_NAME app URL to include configured port"
20
+ }
21
+ }
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ if [ -d "registry/$NAMESPACE/modules/$MODULE_NAME" ]; then
31
31
fi
32
32
mkdir -p " registry/${NAMESPACE} /modules/${MODULE_NAME} "
33
33
34
- # Copy required files from the example module
34
+ # Copy required files from the example module (includes Terraform tests)
35
35
cp -r examples/modules/* " registry/${NAMESPACE} /modules/${MODULE_NAME} /"
36
36
37
37
# Change to module directory
48
48
sed -i " s/MODULE_NAME/${MODULE_NAME} /g" README.md
49
49
fi
50
50
51
- # Make run.sh executable
52
- chmod +x run.sh
51
+ # Make run.sh executable (if present)
52
+ if [ -f run.sh ]; then
53
+ chmod +x run.sh
54
+ fi
You can’t perform that action at this time.
0 commit comments