-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(ser): Port another test from toml-rs
- Loading branch information
Showing
1 changed file
with
55 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#![cfg(feature = "easy")] | ||
|
||
use serde::{Deserialize, Serialize}; | ||
use toml_edit::ser::to_string; | ||
|
||
#[derive(Debug, Clone, Hash, PartialEq, Eq, Serialize, Deserialize)] | ||
struct User { | ||
pub name: String, | ||
pub surname: String, | ||
} | ||
|
||
#[derive(Debug, Clone, Hash, PartialEq, Eq, Serialize, Deserialize)] | ||
struct Users { | ||
pub user: Vec<User>, | ||
} | ||
|
||
#[derive(Debug, Clone, Hash, PartialEq, Eq, Serialize, Deserialize)] | ||
struct TwoUsers { | ||
pub user0: User, | ||
pub user1: User, | ||
} | ||
|
||
#[test] | ||
fn no_unnecessary_newlines_array() { | ||
let toml = to_string(&Users { | ||
user: vec![ | ||
User { | ||
name: "John".to_string(), | ||
surname: "Doe".to_string(), | ||
}, | ||
User { | ||
name: "Jane".to_string(), | ||
surname: "Dough".to_string(), | ||
}, | ||
], | ||
}) | ||
.unwrap(); | ||
assert!(!toml.starts_with('\n')); | ||
} | ||
|
||
#[test] | ||
fn no_unnecessary_newlines_table() { | ||
let toml = to_string(&TwoUsers { | ||
user0: User { | ||
name: "John".to_string(), | ||
surname: "Doe".to_string(), | ||
}, | ||
user1: User { | ||
name: "Jane".to_string(), | ||
surname: "Dough".to_string(), | ||
}, | ||
}) | ||
.unwrap(); | ||
assert!(!toml.starts_with('\n')); | ||
} |