mod common;
use crate::common::data_path;
use assert_cmd::Command;
#[test]
fn test_json_converters_termination() {
let input_path = data_path("test_data/errors/error_eof.json");
let mut cmd = Command::cargo_bin("json2sbp").unwrap();
cmd.arg(input_path)
.assert()
.success()
.stderr("expected `,` or `}` at line 1 column 185\n");
}
#[test]
fn test_json_untagged() {
let input_path = data_path("test_data/errors/error_untagged.json");
let mut cmd = Command::cargo_bin("json2sbp").unwrap();
cmd.arg(input_path)
.assert()
.success()
.stderr("data did not match any variant of untagged enum JsonInput\n");
}