This repository was archived by the owner on Dec 29, 2021. It is now read-only.
This repository was archived by the owner on Dec 29, 2021. It is now read-only.
Feature: show line numbers and/or context in diffs #17
Closed
Description
Just a random idea. :-)
git diffs provide some context and line numbers. If the output is really huge and lines are similar, this might be helpful - but certainly not straightforward. Should probably even be implement upstream first in the difference
crate.
@@ -93,7 +93,7 @@
#[derive(Debug)]
pub struct Assert {
cmd: Vec<String>,
- expect_success: bool,
+ expect_success: Option<bool>,
expect_exit_code: Option<i32>,
expect_stdout: Option<OutputAssertion>,
expect_stderr: Option<OutputAssertion>,
instead of
- expect_success: bool,
+ expect_success: Option<bool>,