lineguard 0.1.7

A fast and reliable file linter that ensures proper line endings and clean formatting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Testing utilities for LineLint
//!
//! This module provides mock implementations, test builders, and fixtures
//! to support comprehensive unit testing across the codebase.

pub mod builders;
pub mod fixtures;
pub mod mocks;

// Re-export commonly used testing utilities
pub use builders::*;
pub use mocks::*;