Merge pull request #1450 from motu42/master

Bug fix to support the tag attribute on braced structs with zero fields
This commit is contained in:
David Tolnay
2018-12-27 21:48:14 -05:00
committed by GitHub
2 changed files with 22 additions and 1 deletions
+20
View File
@@ -1413,6 +1413,26 @@ fn test_internally_tagged_struct() {
);
}
#[test]
fn test_internally_tagged_braced_struct_with_zero_fields() {
#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[serde(tag = "type")]
struct S {}
assert_tokens(
&S{ },
&[
Token::Struct {
name: "S",
len: 1,
},
Token::Str("type"),
Token::Str("S"),
Token::StructEnd,
],
);
}
#[test]
fn test_enum_in_untagged_enum() {
#[derive(Debug, PartialEq, Serialize, Deserialize)]