- Add PolicySourceStore for tracking where policies come from - Implement claim extraction skill and API endpoints - Add community UI text selection extractor component - Create Go SDK aphoria client for policy operations - Document patent specifications and legal disclosures - Add guides: golden path loop, policy audit trails, pre-flight checks - Expand Unreal Engine config extractor with source tracking - Add UAT reports for policy source tracking validation - Refactor tests.rs into modular test files Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
497 B
Rust
15 lines
497 B
Rust
//! Integration tests for Aphoria scan functionality.
|
|
//!
|
|
//! Tests are organized into modules by category:
|
|
//! - `scan_basic`: Basic scan/init tests
|
|
//! - `conflict_detection`: Conflict detection tests (Phase 2A)
|
|
//! - `scan_modes`: Ephemeral vs Persistent mode tests
|
|
//! - `golden_path`: Golden Path Loop tests (Bless → Export → Import → Scan)
|
|
//! - `policy_source`: Policy source tracking tests
|
|
|
|
mod conflict_detection;
|
|
mod golden_path;
|
|
mod policy_source;
|
|
mod scan_basic;
|
|
mod scan_modes;
|