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);
}
|