From 8239fbd12befad1126e677fa083ce73947d74d8c Mon Sep 17 00:00:00 2001 From: Matan Kushner Date: Thu, 6 Jun 2019 13:18:00 +0100 Subject: Refactor integration tests (#71) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Create subcommands to be able to print modules independently - `starship prompt` will print the full prompt - `starship module ` will print a specific module e.g. `starship module python` - Added `--path` flag to print the prompt or modules without being in a specific directory - Added `--status` flag to provide the status of the last command, instead of requiring it as an argument - Refactored integration tests to be end-to-end tests, since there was no way in integration tests to set the environment variables for a specific command, which was required for the `username` module - Moved e2e tests to `tests/testsuite` to allow for a single binary to be built - Tests will build/run faster - No more false positives for unused functions - Added tests for `username` - Removed codecov + tarpaulin 😢 --- src/modules/character.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/character.rs') diff --git a/src/modules/character.rs b/src/modules/character.rs index 2a9334894..1dfc27991 100644 --- a/src/modules/character.rs +++ b/src/modules/character.rs @@ -20,7 +20,7 @@ pub fn segment(context: &Context) -> Option { let symbol = module.new_segment("symbol", PROMPT_CHAR); let arguments = &context.arguments; - if arguments.value_of("status_code").unwrap() == "0" { + if arguments.value_of("status_code").unwrap_or("0") == "0" { symbol.set_style(color_success.bold()); } else { symbol.set_style(color_failure.bold()); -- cgit v1.2.3