[board] Some test helpers that produce Squares from algebraic notiation and assert their validity

This commit is contained in:
Eryn Wells 2023-12-28 12:08:37 -07:00
parent 5e47d37aa3
commit 5039d657ae
2 changed files with 25 additions and 0 deletions

View file

@ -1,9 +1,14 @@
// Eryn Wells <eryn@erynwells.me>
mod bitboard;
mod moves;
pub mod piece;
mod position;
mod square;
#[cfg(test)]
mod tests;
pub use moves::Move;
pub use position::Position;
pub use square::Square;