File: enum_external_deserialize.rs

package info (click to toggle)
rust-basic-toml 0.1.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 936 kB
  • sloc: makefile: 2
file content (30 lines) | stat: -rw-r--r-- 619 bytes parent folder | download | duplicates (40)
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
#![allow(clippy::wildcard_imports)]

use serde::Deserialize;

#[derive(Debug, Deserialize, PartialEq)]
struct Struct {
    value: Enum,
}

#[derive(Debug, Deserialize, PartialEq)]
enum Enum {
    Variant,
}

#[test]
fn unknown_variant() {
    let error = basic_toml::from_str::<Struct>("value = \"NonExistent\"").unwrap_err();

    assert_eq!(
        error.to_string(),
        "unknown variant `NonExistent`, expected `Variant` for key `value` at line 1 column 1"
    );
}

#[test]
fn from_str() {
    let s = basic_toml::from_str::<Struct>("value = \"Variant\"").unwrap();

    assert_eq!(Enum::Variant, s.value);
}