mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-07 00:39:44 -06:00
25 lines
523 B
Bash
25 lines
523 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" {
|
|
skip "temporarily disabled while we clean up the testify dependency coming in from GMS"
|
|
|
|
run grep_for_testify
|
|
[ "$output" = "" ]
|
|
}
|
|
|
|
grep_for_testify() {
|
|
strings `type -p dolt` | grep testify
|
|
}
|