diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2026-02-12 13:20:55 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2026-02-12 14:50:52 +0000 |
| commit | 71b6157044f305c8d7142b24bd71798035603f0e (patch) | |
| tree | f6a9a9beb13b4253724058f94178cfca6d6ecfab /grasp-audit/src/specs/grasp01/mod.rs | |
| parent | dcaaa0c44c46f963929ab0baa91f63759ec702dc (diff) | |
feat(grasp-audit): add explicit purgatory tests
Add PurgatoryTests module with tests for GRASP-01 purgatory behavior:
- Announcement purgatory tests (tolerant of unimplemented feature)
- State event purgatory tests (already implemented)
- PR purgatory tests (tolerant of unimplemented feature)
Tests pass regardless of purgatory implementation status, enabling
development without breaking the test suite. When features are
implemented, tests will verify correct purgatory behavior.
Diffstat (limited to 'grasp-audit/src/specs/grasp01/mod.rs')
| -rw-r--r-- | grasp-audit/src/specs/grasp01/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/grasp-audit/src/specs/grasp01/mod.rs b/grasp-audit/src/specs/grasp01/mod.rs index 125594c..1694f58 100644 --- a/grasp-audit/src/specs/grasp01/mod.rs +++ b/grasp-audit/src/specs/grasp01/mod.rs | |||
| @@ -19,6 +19,7 @@ pub mod git_clone; | |||
| 19 | pub mod git_filter; | 19 | pub mod git_filter; |
| 20 | pub mod nip01_smoke; | 20 | pub mod nip01_smoke; |
| 21 | pub mod nip11_document; | 21 | pub mod nip11_document; |
| 22 | pub mod purgatory; | ||
| 22 | pub mod push_authorization; | 23 | pub mod push_authorization; |
| 23 | pub mod repository_creation; | 24 | pub mod repository_creation; |
| 24 | pub mod spec_requirements; | 25 | pub mod spec_requirements; |
| @@ -29,6 +30,7 @@ pub use git_clone::GitCloneTests; | |||
| 29 | pub use git_filter::GitFilterTests; | 30 | pub use git_filter::GitFilterTests; |
| 30 | pub use nip01_smoke::Nip01SmokeTests; | 31 | pub use nip01_smoke::Nip01SmokeTests; |
| 31 | pub use nip11_document::Nip11DocumentTests; | 32 | pub use nip11_document::Nip11DocumentTests; |
| 33 | pub use purgatory::PurgatoryTests; | ||
| 32 | pub use push_authorization::PushAuthorizationTests; | 34 | pub use push_authorization::PushAuthorizationTests; |
| 33 | pub use repository_creation::RepositoryCreationTests; | 35 | pub use repository_creation::RepositoryCreationTests; |
| 34 | pub use spec_requirements::{ | 36 | pub use spec_requirements::{ |