We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40ba4c2 commit adecf86Copy full SHA for adecf86
1 file changed
tests/quickstart.bats
@@ -82,14 +82,17 @@ setup() {
82
83
# Port checking tests
84
@test "check.sh port validation works" {
85
- run bash -c "grep -q 'check_port.*8080' $SCRIPT_DIR/check.sh"
86
- [ "$status" -eq 0 ]
87
-
88
run bash -c "grep -q 'check_port.*8443' $SCRIPT_DIR/check.sh"
89
[ "$status" -eq 0 ]
90
91
run bash -c "grep -q 'check_port.*9443' $SCRIPT_DIR/check.sh"
92
+
+ run bash -c "grep -q 'check_port.*2019' $SCRIPT_DIR/check.sh"
+ [ "$status" -eq 0 ]
93
94
+ run bash -c "grep -q 'check_port.*5432' $SCRIPT_DIR/check.sh"
95
96
}
97
98
# Script structure tests
0 commit comments