sunny 1.1.0

Tool to download free music from Bandcamp. Automatically organize files to folder, ID3 tags (including album art).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use sunny::utils;

#[test]
fn timestamp_case1() {
    let ret = utils::timestamp("28 Sep 2014 04:19:31 GMT");

    assert!(ret.is_some());
}

#[test]
fn timestamp_case2() {
    let ret = utils::timestamp("released September 28, 2014");

    assert!(ret.is_some());
}