29 lines
622 B
Markdown
29 lines
622 B
Markdown
# Expected Results
|
|
|
|
Use these assertions when verifying `connect`, `inspect`, `query`, and `export`.
|
|
|
|
## PostgreSQL
|
|
|
|
- schema: `qa_demo`
|
|
- tables: `accounts`, `tickets`
|
|
|
|
## MySQL
|
|
|
|
- database: `qa_demo`
|
|
- tables: `accounts`, `tickets`
|
|
|
|
## SQLite
|
|
|
|
- file: `examples/tmp/dbtool-demo.sqlite`
|
|
- tables: `accounts`, `tickets`
|
|
|
|
## Shared Data Assertions
|
|
|
|
- `accounts` row count: `3`
|
|
- `tickets` row count: `4`
|
|
- open tickets: `3`
|
|
- closed tickets: `1`
|
|
- at least one `NULL` value exists in `tickets.notes`
|
|
- at least one multilingual value exists in `accounts.display_name`
|
|
- export query returns `4` rows ordered by `ticket_id`
|