mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 10:23:52 +01:00
96e5fc05a3
Pick->Select rename. Integration tests changes.
20 lines
402 B
Rust
20 lines
402 B
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[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
|
|
| echo $it
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "hello");
|
|
}
|