mirror of
https://github.com/danog/strum.git
synced 2024-12-02 09:27:57 +01:00
672ac26005
* add clippy.toml with an msrv * fix clippy lints * replace inefficient algorithm * replace ::std with ::core in more places and comments * fix some test warnings * fix clippy lints in tests
35 lines
1006 B
Rust
35 lines
1006 B
Rust
/// test `serialize_all` cooperation with other macroses
|
|
use std::str::FromStr;
|
|
use std::string::ToString;
|
|
use strum::{Display, EnumString, IntoStaticStr};
|
|
|
|
#[derive(Debug, Eq, PartialEq, EnumString, Display, IntoStaticStr)]
|
|
#[strum(serialize_all = "title_case")]
|
|
enum Foo1 {
|
|
DarkBlack,
|
|
Dim { glow: usize },
|
|
BrightWhite,
|
|
}
|
|
|
|
#[test]
|
|
fn test_serialize_all_title_case() {
|
|
assert_eq!("Dark Black", Foo1::DarkBlack.to_string());
|
|
assert_eq!(Foo1::DarkBlack, Foo1::from_str("Dark Black").unwrap());
|
|
assert_eq!("Dark Black", <&'static str>::from(Foo1::DarkBlack));
|
|
}
|
|
|
|
#[derive(Debug, Eq, PartialEq, EnumString, Display, IntoStaticStr)]
|
|
#[strum(serialize_all = "UPPERCASE")]
|
|
enum Foo2 {
|
|
DarkBlack,
|
|
Dim { glow: usize },
|
|
BrightWhite,
|
|
}
|
|
|
|
#[test]
|
|
fn test_serialize_all_upper_case() {
|
|
assert_eq!("DARKBLACK", Foo2::DarkBlack.to_string());
|
|
assert_eq!(Foo2::DarkBlack, Foo2::from_str("DARKBLACK").unwrap());
|
|
assert_eq!("DARKBLACK", <&'static str>::from(Foo2::DarkBlack));
|
|
}
|