tests(cmd): ensure select statement works
This commit is contained in:
parent
75c3c74bba
commit
47f174fb25
3 changed files with 16 additions and 1 deletions
|
|
@ -113,4 +113,11 @@ mod tests {
|
|||
let result = statement.execute().display();
|
||||
assert_snapshot!(result);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_execute_select_statement() {
|
||||
let statement: Command = Statement::Select.into();
|
||||
let result = statement.execute().display();
|
||||
assert_snapshot!(result);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue