coverio 0.0.3

Better code coverage reporting for Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use super::*;

#[test]
fn _0001() {
  let tc = test_context!();

  tc.command()
    .current_dir(tc.current_dir())
    .arg("coverage.json")
    .assert()
    .failure()
    .code(1)
    .stdout("")
    .stderr("Error: EOF while parsing an object at line 2 column 0\n");
}