tests(cmd): ensure select statement works

This commit is contained in:
Khaïs COLIN 2025-05-03 21:15:33 +02:00
parent 75c3c74bba
commit 47f174fb25
3 changed files with 16 additions and 1 deletions

View file

@ -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);
}
}