1
0
mirror of https://github.com/danog/strum.git synced 2024-12-02 09:27:57 +01:00
strum/strum_tests/tests/enum_props.rs
Billy Chan e9d3b59a80
Re-export macros (#170)
* Re-exportable macros

* Rename derive attribute to `Crate`

* Add unit tests

* Test nested module

* Rename derive attribute to `crate`

* cargo fmt
2021-07-16 20:40:19 -07:00

48 lines
820 B
Rust

use strum::EnumProperty;
#[derive(Debug, EnumProperty)]
enum Test {
#[strum(props(key = "value"))]
A,
B,
}
#[test]
fn prop_test() {
let a = Test::A;
assert_eq!("value", a.get_str("key").unwrap());
}
#[test]
fn prop_test_not_found() {
let a = Test::A;
assert_eq!(None, a.get_str("Not Found"));
}
#[test]
fn prop_test_not_found_2() {
let b = Test::B;
assert_eq!(None, b.get_str("key"));
}
#[test]
fn crate_module_path_test() {
pub mod nested {
pub mod module {
pub use strum;
}
}
#[allow(dead_code)]
#[derive(Debug, EnumProperty)]
#[strum(crate = "nested::module::strum")]
enum Test {
#[strum(props(key = "value"))]
A,
B,
}
let a = Test::A;
assert_eq!("value", a.get_str("key").unwrap());
}