forked from extern/nushell
6951fb440c
* Remove it-expansion, take 2 * Cleanup * silly update to test CI
21 lines
433 B
Rust
21 lines
433 B
Rust
#[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");
|
|
}
|