toml-rs/test-suite/tests/formatting.rs

57 lines
1.2 KiB
Rust
Raw Normal View History

#[macro_use]
extern crate serde_derive;
extern crate toml;
use toml::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() {
assert!(!to_string(&Users {
2019-05-08 19:45:39 -05:00
user: vec![
User {
name: "John".to_string(),
surname: "Doe".to_string(),
},
2019-05-08 19:45:39 -05:00
User {
name: "Jane".to_string(),
surname: "Dough".to_string(),
},
2019-05-08 19:45:39 -05:00
],
})
.unwrap()
.starts_with("\n"));
}
#[test]
fn no_unnecessary_newlines_table() {
assert!(!to_string(&TwoUsers {
user0: User {
name: "John".to_string(),
surname: "Doe".to_string(),
},
user1: User {
name: "Jane".to_string(),
surname: "Dough".to_string(),
},
})
.unwrap()
.starts_with("\n"));
}