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
13
14
//! Mock implementations for testing
//!
//! This module contains mock implementations of various traits and interfaces
//! used throughout the LineLint codebase, enabling isolated unit testing.

pub mod filesystem;
pub mod output;

// Re-export commonly used mocks
pub use filesystem::{MockFileSystem, MockMetadata};
pub use output::MockOutput;

// Re-export reporter traits from the reporter module
pub use crate::reporter::{Color, ColoredOutput, Output};