libhaystack 3.1.3

Rust implementation of the Haystack 4 data types, defs, filter, units, and encodings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2020 - 2022, J2 Innovations

//! Test Remove

#[cfg(test)]
use libhaystack::val::*;

#[test]
fn test_json_remove_encode() {
    let value = Value::Remove;
    let json = serde_json::to_string(&value);
    assert_eq!(json.unwrap(), r#"{"_kind":"remove"}"#);
}
#[test]
fn test_json_remove_decode() {
    let value: Value = serde_json::from_str(r#"{"_kind":"remove"}"#).unwrap();
    assert_eq!(value, Value::Remove);
}