Remove dead BSON related tests (#10458)

Those tests where behind a feature flag `bson` that is never defined in
`Cargo.toml`

Remove them.
This commit is contained in:
Stefan Holderbach
2023-09-21 20:01:49 +02:00
committed by GitHub
parent addf8ca942
commit 0c7a8e3634
4 changed files with 0 additions and 71 deletions

View File

@ -1,17 +0,0 @@
#[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");
}

View File

@ -1,4 +1,3 @@
mod bson;
mod csv;
#[cfg(feature = "extra")]
mod html;