mirror of
https://github.com/nushell/nushell.git
synced 2025-07-29 12:17:57 +02:00
.cargo
.githooks
.github
assets
benches
crates
nu-cli
nu-cmd-dataframe
nu-cmd-extra
nu-cmd-lang
nu-color-config
nu-command
assets
src
tests
commands
format_conversions
bson.rs
csv.rs
html.rs
json.rs
markdown.rs
mod.rs
nuon.rs
ods.rs
ssv.rs
toml.rs
tsv.rs
url.rs
xlsx.rs
xml.rs
yaml.rs
main.rs
Cargo.toml
LICENSE
nu-engine
nu-explore
nu-glob
nu-json
nu-parser
nu-path
nu-plugin
nu-pretty-hex
nu-protocol
nu-std
nu-system
nu-table
nu-term-grid
nu-test-support
nu-utils
nu_plugin_custom_values
nu_plugin_example
nu_plugin_formats
nu_plugin_gstat
nu_plugin_inc
nu_plugin_python
nu_plugin_query
README.md
docker
scripts
src
tests
wix
.gitignore
.typos.toml
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Cargo.lock
Cargo.toml
Cross.toml
LICENSE
README.md
codecov.yml
rust-toolchain.toml
toolkit.nu
* move commands, futures.rs, script.rs, utils * move over maybe_print_errors * add nu_command crate references to nu_cli * in commands.rs open up to pub mod from pub(crate) * nu-cli, nu-command, and nu tests are now passing * cargo fmt * clean up nu-cli/src/prelude.rs * code cleanup * for some reason lex.rs was not formatted, may be causing my error * remove mod completion from lib.rs which was not being used along with quickcheck macros * add in allow unused imports * comment out one failing external test; comment out one failing internal test * revert commenting out failing tests; something else might be going on; someone with a windows machine should check and see what is going on with these failing windows tests * Update Cargo.toml Extend the optional features to nu-command Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
18 lines
376 B
Rust
18 lines
376 B
Rust
#[cfg(feature = "bson")]
|
|
#[test]
|
|
fn table_to_bson_and_back_into_table() {
|
|
use nu_test_support::{nu, pipeline};
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
open sample.bson
|
|
| to bson
|
|
| from bson
|
|
| get root
|
|
| get 1.b
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "whel");
|
|
}
|