hide_glue/lib.rs
1//! Hide glue, like testing, holds beautiful things together.
2//!
3//! This library contains some helpers for writing tests with files.
4//!
5//! The [`file_reader`] module contains a [`TextFileReader`][`file_reader::TextFileReader`], which
6//! simplifies tests which need to read and compare text files. The [`fixture`] module contains a
7//! [`TemporaryFileFixture`][`fixture::TemporaryFileFixture`], which will create a temporary file
8//! in a temporary directory, optionally copying an existing file to the temporary file.
9pub mod file_reader;
10pub mod fixture;