blob: 24cba2edaf8f53409f63270da2a623c3b12fed27 [file] [log] [blame] [edit]
mod utils;
use structopt::StructOpt;
use utils::*;
#[test]
fn it_works() {
#[derive(Debug, PartialEq, StructOpt)]
#[structopt(rename_all_env = "kebab")]
struct BehaviorModel {
#[structopt(env)]
be_nice: String,
}
let help = get_help::<BehaviorModel>();
assert!(help.contains("[env: be-nice=]"));
}
#[test]
fn default_is_screaming() {
#[derive(Debug, PartialEq, StructOpt)]
struct BehaviorModel {
#[structopt(env)]
be_nice: String,
}
let help = get_help::<BehaviorModel>();
assert!(help.contains("[env: BE_NICE=]"));
}
#[test]
fn overridable() {
#[derive(Debug, PartialEq, StructOpt)]
#[structopt(rename_all_env = "kebab")]
struct BehaviorModel {
#[structopt(env)]
be_nice: String,
#[structopt(rename_all_env = "pascal", env)]
be_aggressive: String,
}
let help = get_help::<BehaviorModel>();
assert!(help.contains("[env: be-nice=]"));
assert!(help.contains("[env: BeAggressive=]"));
}