We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7929f27 commit bbc31caCopy full SHA for bbc31ca
1 file changed
test/simple.bats
@@ -697,13 +697,15 @@ EOF
697
# Test 77: sanitize_database_name rejects name with starting with number
698
@test "sanitize_database_name rejects name starting with number" {
699
run sanitize_database_name "1test_database"
700
+ echo "$output"
701
[ "$status" -eq 1 ]
702
[[ "$output" == "test_database" ]]
703
}
704
705
# Test 78: sanitize_database_name rejects name with spaces
706
@test "sanitize_database_name rejects name with spaces" {
707
run sanitize_database_name "test database"
708
709
710
[[ "$output" == "testdatabase" ]]
711
0 commit comments