ck_commands 0.0.5

hello, worldcrate!
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::commands;

#[test]
fn test_hello_world() {
    assert_eq!(commands::hello_world(), "Hello, world");
}

#[test]
fn test_hello_world_with_args() {
    assert_eq!(commands::hello_world_with_args("human"), "Hello, world, human");
}