diff options
author | Daniel Mueller <deso@posteo.net> | 2020-08-24 18:04:20 -0700 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2020-08-24 18:04:20 -0700 |
commit | b114125dfbb4c97580ae076c07c6816ccdca51b8 (patch) | |
tree | a6663810c402dbd4f99f07e485872dd5f80702bf /src/tests/status.rs | |
parent | 147d01663f9b95c6819d3c6afe8694cd291dbc3d (diff) | |
download | nitrocli-b114125dfbb4c97580ae076c07c6816ccdca51b8.tar.gz nitrocli-b114125dfbb4c97580ae076c07c6816ccdca51b8.tar.bz2 |
Introduce builder infrastructure for assembling Nitrocli instance
In the future we would like to provide more ways for tests to create a
Nitrocli instance. In order to prevent explosion of with_XXX methods for
each possible combination of arguments, this change introduces a Builder
struct that can be used to create such an instance in an idiomatic way.
Diffstat (limited to 'src/tests/status.rs')
-rw-r--r-- | src/tests/status.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/status.rs b/src/tests/status.rs index c9f4976..ea573e3 100644 --- a/src/tests/status.rs +++ b/src/tests/status.rs @@ -49,7 +49,7 @@ $"#, ) .unwrap(); - let out = Nitrocli::with_model(model).handle(&["status"])?; + let out = Nitrocli::make().model(model).build().handle(&["status"])?; assert!(re.is_match(&out), out); Ok(()) } @@ -75,7 +75,7 @@ $"#, ) .unwrap(); - let out = Nitrocli::with_model(model).handle(&["status"])?; + let out = Nitrocli::make().model(model).build().handle(&["status"])?; assert!(re.is_match(&out), out); Ok(()) } |