mirror of
https://github.com/nushell/nushell.git
synced 2025-04-23 12:48:22 +02:00
from sqlite: Add test for table selection (#3599)
This commit is contained in:
parent
3ae3e3d23d
commit
9a2fe7ec0c
@ -18,3 +18,19 @@ fn table_to_sqlite_and_back_into_table() {
|
|||||||
|
|
||||||
assert_eq!(actual.out, "hello");
|
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");
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user