diff options
Diffstat (limited to 'grasp-audit/src/specs/mod.rs')
| -rw-r--r-- | grasp-audit/src/specs/mod.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/grasp-audit/src/specs/mod.rs b/grasp-audit/src/specs/mod.rs index a502866..1444c80 100644 --- a/grasp-audit/src/specs/mod.rs +++ b/grasp-audit/src/specs/mod.rs | |||
| @@ -1,6 +1,11 @@ | |||
| 1 | //! Test specifications | 1 | //! Test specifications |
| 2 | //! | ||
| 3 | //! This module contains all GRASP specification test suites. | ||
| 2 | 4 | ||
| 3 | pub mod grasp01; | 5 | pub mod grasp01; |
| 4 | 6 | ||
| 5 | // Re-export all test structs from grasp01 module | 7 | // Re-export all test structs from grasp01 module |
| 6 | pub use grasp01::{EventAcceptancePolicyTests, Nip01SmokeTests, Nip11DocumentTests}; | 8 | pub use grasp01::{ |
| 9 | CorsTests, EventAcceptancePolicyTests, GitCloneTests, Nip01SmokeTests, Nip11DocumentTests, | ||
| 10 | PushAuthorizationTests, RepositoryCreationTests, | ||
| 11 | }; | ||