mirror of
https://github.com/nushell/nushell.git
synced 2025-08-12 08:29:52 +02:00
Command tests (#922)
* WIP command tests * Finish marking todo tests * update * update * Windows cd test ignoring
This commit is contained in:
36
crates/nu-command/tests/format_conversions/sqlite.rs
Normal file
36
crates/nu-command/tests/format_conversions/sqlite.rs
Normal file
@ -0,0 +1,36 @@
|
||||
#[cfg(feature = "sqlite")]
|
||||
use nu_test_support::{nu, pipeline};
|
||||
|
||||
#[cfg(feature = "sqlite")]
|
||||
#[test]
|
||||
fn table_to_sqlite_and_back_into_table() {
|
||||
let actual = nu!(
|
||||
cwd: "tests/fixtures/formats", pipeline(
|
||||
r#"
|
||||
open sample.db
|
||||
| to sqlite
|
||||
| from sqlite
|
||||
| get table_values
|
||||
| nth 2
|
||||
| get x
|
||||
"#
|
||||
));
|
||||
|
||||
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");
|
||||
}
|
Reference in New Issue
Block a user