mirror of
https://github.com/danog/strum.git
synced 2024-12-02 09:27:57 +01:00
e9d3b59a80
* Re-exportable macros * Rename derive attribute to `Crate` * Add unit tests * Test nested module * Rename derive attribute to `crate` * cargo fmt
48 lines
820 B
Rust
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());
|
|
}
|