diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-05 20:13:22 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-05 20:25:38 +0000 |
| commit | 396da002fefeeb4549e11ff51abf824e91a6ed88 (patch) | |
| tree | d5a61d081d97b52a38f7ce8f4a28d8c200eeede3 /grasp-audit/src/specs/mod.rs | |
| parent | b22cb23928ef799b0a5d362003d3084d2ab267b4 (diff) | |
restructure grasp01 audit tests and add event acceptance
Diffstat (limited to 'grasp-audit/src/specs/mod.rs')
| -rw-r--r-- | grasp-audit/src/specs/mod.rs | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/grasp-audit/src/specs/mod.rs b/grasp-audit/src/specs/mod.rs index 834bf9e..c1c277c 100644 --- a/grasp-audit/src/specs/mod.rs +++ b/grasp-audit/src/specs/mod.rs | |||
| @@ -1,7 +1,10 @@ | |||
| 1 | //! Test specifications | 1 | //! Test specifications |
| 2 | 2 | ||
| 3 | pub mod grasp01_nostr_relay; | 3 | pub mod grasp01; |
| 4 | pub mod nip01_smoke; | ||
| 5 | 4 | ||
| 6 | pub use grasp01_nostr_relay::Grasp01NostrRelayTests; | 5 | // Re-export all test structs from grasp01 module |
| 7 | pub use nip01_smoke::Nip01SmokeTests; | 6 | pub use grasp01::{ |
| 7 | EventAcceptancePolicyTests, | ||
| 8 | Nip01SmokeTests, | ||
| 9 | Nip11DocumentTests, | ||
| 10 | }; | ||