diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-27 15:16:58 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-27 15:16:58 +0000 |
| commit | 233feae6af4b291e4860a1ddf9df2ccf82e57c2f (patch) | |
| tree | 569d798c72f3219d7d4a7035724045a624d0fc2a /grasp-audit/src/lib.rs | |
| parent | 3f18235e4d2b881b7bac543878cdf501abfe667e (diff) | |
fix(tests): update main project tests for grasp-audit API changes
Diffstat (limited to 'grasp-audit/src/lib.rs')
| -rw-r--r-- | grasp-audit/src/lib.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/grasp-audit/src/lib.rs b/grasp-audit/src/lib.rs index b7ce992..a58c2f0 100644 --- a/grasp-audit/src/lib.rs +++ b/grasp-audit/src/lib.rs | |||
| @@ -38,8 +38,11 @@ pub mod specs; | |||
| 38 | pub use audit::{AuditConfig, AuditMode}; | 38 | pub use audit::{AuditConfig, AuditMode}; |
| 39 | pub use client::AuditClient; | 39 | pub use client::AuditClient; |
| 40 | pub use fixtures::{ | 40 | pub use fixtures::{ |
| 41 | ContextMode, FixtureKind, TestContext, DETERMINISTIC_COMMIT_HASH, | 41 | clone_repo, create_commit, create_deterministic_commit, create_deterministic_commit_with_variant, |
| 42 | MAINTAINER_DETERMINISTIC_COMMIT_HASH, RECURSIVE_MAINTAINER_DETERMINISTIC_COMMIT_HASH, | 42 | CommitVariant, ContextMode, FixtureKind, RepoSetup, TestContext, |
| 43 | setup_repo_for_maintainer, setup_repo_for_recursive_maintainer, setup_repo_with_deterministic_commit, | ||
| 44 | try_push, DETERMINISTIC_COMMIT_HASH, MAINTAINER_DETERMINISTIC_COMMIT_HASH, | ||
| 45 | RECURSIVE_MAINTAINER_DETERMINISTIC_COMMIT_HASH, | ||
| 43 | }; | 46 | }; |
| 44 | pub use result::{AuditResult, TestResult}; | 47 | pub use result::{AuditResult, TestResult}; |
| 45 | 48 | ||