From 00ad4d12e40d4907d243ba4ebe763cc169c47371 Mon Sep 17 00:00:00 2001 From: Arthur Paulino Date: Mon, 18 Sep 2023 19:47:45 -0300 Subject: [PATCH] add test for sha256 NIVC --- tests/lurk-nivc-test.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/lurk-nivc-test.rs diff --git a/tests/lurk-nivc-test.rs b/tests/lurk-nivc-test.rs new file mode 100644 index 0000000000..83112d2615 --- /dev/null +++ b/tests/lurk-nivc-test.rs @@ -0,0 +1,12 @@ +use assert_cmd::prelude::*; +use std::process::Command; + +/// TODO: replace this test for more granular ones, specific for the NIVC +/// pipeline steps +#[test] +#[ignore] +fn test_sha256_nivc() { + let mut cmd = Command::new("cargo"); + cmd.args(["run", "--release", "--example", "sha256_nivc"]); + cmd.assert().success(); +}