mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-07 08:50:34 -06:00
added smoke test for JSON support
This commit is contained in:
20
integration-tests/bats/json.bats
Normal file
20
integration-tests/bats/json.bats
Normal file
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env bats
|
||||
load $BATS_TEST_DIRNAME/helper/common.bash
|
||||
|
||||
setup() {
|
||||
setup_common
|
||||
}
|
||||
|
||||
teardown() {
|
||||
teardown_common
|
||||
}
|
||||
|
||||
@test "json: JSON not yet supported " {
|
||||
run dolt sql <<SQL
|
||||
CREATE TABLE js (
|
||||
pk int PRIMARY KEY,
|
||||
js json
|
||||
);
|
||||
SQL
|
||||
[ $status -ne 0 ]
|
||||
}
|
||||
Reference in New Issue
Block a user