leenfetch 1.0.3

Fast, minimal, customizable system info tool in Rust (Neofetch alternative)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub fn get_os() -> String {
    String::from("Linux")
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn returns_linux_literal() {
        assert_eq!(get_os(), "Linux");
    }
}