aboutsummaryrefslogtreecommitdiff
path: root/structopt/tests/rename_all_env.rs
blob: 1979e84f7fcc268b7fc30cc267d7def1600fe05a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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_agressive: String,
    }

    let help = get_help::<BehaviorModel>();
    assert!(help.contains("[env: be-nice=]"));
    assert!(help.contains("[env: BeAgressive=]"));
}