from sqlite: Add test for table selection (#3599)

This commit is contained in:
Christian Menges 2021-06-10 14:41:43 +02:00 committed by GitHub
parent 3ae3e3d23d
commit 9a2fe7ec0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,3 +18,19 @@ fn table_to_sqlite_and_back_into_table() {
assert_eq!(actual.out, "hello");
}
#[cfg(feature = "sqlite")]
#[test]
fn table_to_sqlite_and_back_into_table_select_table() {
let actual = nu!(
cwd: "tests/fixtures/formats", pipeline(
r#"
open sample.db
| to sqlite
| from sqlite -t [strings]
| get table_names
"#
));
assert_eq!(actual.out, "strings");
}