mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-23 09:28:04 +00:00
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:
@@ -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)]
|
||||
|
||||
Reference in New Issue
Block a user