From adf22539e3c1b4a96fa4b8fe04095c216b4d5541 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Thu, 27 Nov 2025 16:07:57 +0000 Subject: Task 7: Export verification helpers in public API - Added send_and_verify_accepted to lib.rs exports - Added send_and_verify_rejected to lib.rs exports - Organized exports into logical groups with comments: * Git operation helpers * Verification helpers * Repo setup helpers * Types and constants - Build succeeds: cargo build --- grasp-audit/src/lib.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'grasp-audit/src/lib.rs') diff --git a/grasp-audit/src/lib.rs b/grasp-audit/src/lib.rs index a58c2f0..2d5531b 100644 --- a/grasp-audit/src/lib.rs +++ b/grasp-audit/src/lib.rs @@ -38,10 +38,16 @@ pub mod specs; pub use audit::{AuditConfig, AuditMode}; pub use client::AuditClient; pub use fixtures::{ + // Git operation helpers clone_repo, create_commit, create_deterministic_commit, create_deterministic_commit_with_variant, - CommitVariant, ContextMode, FixtureKind, RepoSetup, TestContext, + try_push, + // Verification helpers + send_and_verify_accepted, send_and_verify_rejected, + // Repo setup helpers setup_repo_for_maintainer, setup_repo_for_recursive_maintainer, setup_repo_with_deterministic_commit, - try_push, DETERMINISTIC_COMMIT_HASH, MAINTAINER_DETERMINISTIC_COMMIT_HASH, + // Types and constants + CommitVariant, ContextMode, FixtureKind, RepoSetup, TestContext, + DETERMINISTIC_COMMIT_HASH, MAINTAINER_DETERMINISTIC_COMMIT_HASH, RECURSIVE_MAINTAINER_DETERMINISTIC_COMMIT_HASH, }; pub use result::{AuditResult, TestResult}; -- cgit v1.2.3