-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add #526 as a test Co-authored-by: porkbrain <[email protected]> * Fix indemap deprecated API usage --------- Co-authored-by: porkbrain <[email protected]>
- Loading branch information
Showing
2 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
use serde::{Deserialize, Serialize}; | ||
|
||
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)] | ||
struct SomeCollection { | ||
inner: Vec<SomeItem>, | ||
} | ||
|
||
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)] | ||
struct SomeItem { | ||
#[serde(flatten)] | ||
foo: Foo, | ||
#[serde(flatten)] | ||
bar: Bar, | ||
} | ||
|
||
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)] | ||
struct Bar { | ||
name: String, | ||
some_enum: Option<SomeEnum>, | ||
} | ||
|
||
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)] | ||
struct Foo { | ||
something: String, | ||
} | ||
|
||
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)] | ||
enum SomeEnum { | ||
A, | ||
B, | ||
} | ||
|
||
#[test] | ||
fn roundtrip() { | ||
let scene = SomeCollection { | ||
inner: vec![SomeItem { | ||
foo: Foo { | ||
something: "something".to_string(), | ||
}, | ||
bar: Bar { | ||
name: "name".to_string(), | ||
some_enum: Some(SomeEnum::A), | ||
}, | ||
}], | ||
}; | ||
|
||
let ron = ron::ser::to_string(&scene).unwrap(); | ||
let de: SomeCollection = ron::de::from_str(&ron).unwrap(); | ||
assert_eq!(de, scene); | ||
|
||
let ron = ron::ser::to_string_pretty(&scene, Default::default()).unwrap(); | ||
let _deser_scene: SomeCollection = ron::de::from_str(&ron).unwrap(); | ||
assert_eq!(de, scene); | ||
} |