mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-18 16:07:08 +00:00
22 lines
598 B
Rust
22 lines
598 B
Rust
use super::{is_camel_case, to_camel_case};
|
|
|
|
#[test]
|
|
fn camel_case() {
|
|
assert!(!is_camel_case("userData"));
|
|
assert_eq!(to_camel_case("userData"), "UserData");
|
|
|
|
assert!(is_camel_case("X86_64"));
|
|
|
|
assert!(!is_camel_case("X86__64"));
|
|
assert_eq!(to_camel_case("X86__64"), "X86_64");
|
|
|
|
assert!(!is_camel_case("Abc_123"));
|
|
assert_eq!(to_camel_case("Abc_123"), "Abc123");
|
|
|
|
assert!(!is_camel_case("A1_b2_c3"));
|
|
assert_eq!(to_camel_case("A1_b2_c3"), "A1B2C3");
|
|
|
|
assert!(!is_camel_case("ONE_TWO_THREE"));
|
|
assert_eq!(to_camel_case("ONE_TWO_THREE"), "OneTwoThree");
|
|
}
|