youkebox 0.1.0

YoukeBox, a better way to create live playlists
1
2
3
4
5
6
7
8
extern crate youkebox;

use youkebox::player::duration_to_seconds;

#[test]
fn parse_duration() {
    assert_eq!(4210, duration_to_seconds(&"PT1H10M10S".to_string()));
}