Skip to content

Commit

Permalink
add test for sha256 NIVC
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurpaulino committed Sep 18, 2023
1 parent cdcd48a commit 00ad4d1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/lurk-nivc-test.rs
Original file line number Diff line number Diff line change
@@ -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();
}

0 comments on commit 00ad4d1

Please sign in to comment.