Files
wehub-resource-sync 5357c39144
Fuzzer / Run Fuzzer (push) Has been cancelled
Race tests / Go race tests (ubuntu-22.04) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:01:40 +08:00

23 lines
430 B
Bash

#!/usr/bin/env bats
load $BATS_TEST_DIRNAME/helper/common.bash
setup() {
setup_common
}
teardown() {
teardown_common
}
# Validation is a set of tests that validate various things about dolt
# that have nothing to do with product functionality directly.
@test "validation: no test symbols in binary" {
run grep_for_testify
[ "$output" = "" ]
}
grep_for_testify() {
strings `type -p dolt` | grep testify
}