aboutsummaryrefslogtreecommitdiff
path: root/test-suite/tests/tables-last.rs
blob: ae427e43695be176253a9c09e9c67834cb16c057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#[macro_use]
extern crate serde_derive;
extern crate milf;

use std::collections::HashMap;

#[derive(Serialize)]
struct A {
    #[serde(serialize_with = "milf::ser::tables_last")]
    vals: HashMap<&'static str, Value>,
}

#[derive(Serialize)]
#[serde(untagged)]
enum Value {
    Map(HashMap<&'static str, &'static str>),
    Int(i32),
}

#[test]
fn always_works() {
    let mut a = A {
        vals: HashMap::new(),
    };
    a.vals.insert("foo", Value::Int(0));

    let mut sub = HashMap::new();
    sub.insert("foo", "bar");
    a.vals.insert("bar", Value::Map(sub));

    milf::to_string(&a).unwrap();
}