Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13


use toolkit;

#[test]
fn test_uppercase_first_char() {
  assert_eq!("Abc", toolkit::text::uppercase_first_char("abc"));
}

#[test]
fn lowercase_first_char() {
  assert_eq!("aBC", toolkit::text::lowercase_first_char("ABC"));
}