myx 0.4.0

A lean, beautiful terminal Spotify player
1
2
3
4
5
6
7
8
9
10
11
12
13
//! The binary's unit tests, kept in the crate (not `tests/`) because they
//! exercise items that are private to `main.rs`.

mod nav;
mod playlist;

/// Live-API tests, `#[ignore]`d so `cargo test` stays offline:
///
///     cargo test --bin myx -- --ignored --nocapture
///
/// They catch Spotify changing an endpoint out from under the artist page,
/// which is how the 403/400 pair that emptied it went unnoticed.
mod live;