1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
pub mod chat;

mod test {
    #[test]
    fn chat_components() {
        use crate::chat::TextColor;
        use blocky::ChatFormatting;

        let black: TextColor = ChatFormatting::BLACK.into();

        println!("testing 123: {}", black);
    }
}