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
//! Test builders for creating test data
//!
//! This module provides builder patterns for constructing test data
//! in a fluent and readable manner.

pub mod file_builder;
pub mod scenario_builder;

// Re-export commonly used builders
pub use file_builder::{LineEnding, TestFileBuilder};
pub use scenario_builder::{TestIssue, TestResult, TestScenario};