rhood-cli 0.1.2

Terminal CLI for the Robinhood trading API
1
2
3
4
5
6
7
8
use crate::common::{cli, parse_json};

#[test]
#[ignore = "requires live Robinhood credentials"]
fn documents_returns_array() {
    let output = cli().args(["account", "documents"]).assert().success();
    assert!(parse_json(&output).is_array());
}