ruvector/examples/scipix/tests/common/mod.rs
rUv 77f391b0b7 fix(ci): Fix formatting and workflow permission issues
- Run cargo fmt across all crates (468 files formatted)
- Add permissions for PR comments in benchmarks.yml
- Add continue-on-error for PR comment steps
- Remove Docker service from postgres-extension-ci (pgrx manages own postgres)
- Add permissions to postgres-extension-ci.yml

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-26 22:11:57 +00:00

16 lines
552 B
Rust

// Common test utilities
//
// Provides shared functionality for integration tests
pub mod images;
pub mod latex;
pub mod metrics;
pub mod server;
pub mod types;
// Re-export commonly used types and functions
pub use images::{generate_fraction, generate_integral, generate_simple_equation, generate_symbol};
pub use latex::{calculate_similarity, expressions_match, normalize};
pub use metrics::{calculate_bleu, calculate_cer, calculate_wer};
pub use server::TestServer;
pub use types::{CacheStats, OutputFormat, ProcessingOptions, ProcessingResult};