rustfm-scraper 0.2.23

Scrapes listening history from Last.fm and stores it in a file
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(test)]
mod tests {
    use assert_cmd::Command;

    #[test]
    fn test_no_args() {
        let mut cmd = Command::cargo_bin("rustfm-scraper").unwrap();
        cmd.assert().failure();
    }
}