test_crate_hello_world 0.1.2

A Simple Hello World Crate
Documentation
//! A Simple Hello World Crate

/// This function returns the greeting; Hello, world!
pub fn hello() -> String {
	("Hello, world!").to_string()
}

#[cfg(test)]
mod tests {

    use super::hello;

    #[test]
    fn test_hello() {
        assert_eq!(hello(), "Hello, world!");
    }
}