diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-14 09:56:40 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-14 10:01:13 -0500 |
| commit | 9a4cd221f8206fb1533937170f47dcd19d574ef1 (patch) | |
| tree | 14d7c270d3f621070f75b878c5df4a7b872c8008 /dungeon/tests | |
| parent | Enable more clippy lints (diff) | |
| download | DungeonCrawl-9a4cd221f8206fb1533937170f47dcd19d574ef1.tar.gz DungeonCrawl-9a4cd221f8206fb1533937170f47dcd19d574ef1.tar.bz2 DungeonCrawl-9a4cd221f8206fb1533937170f47dcd19d574ef1.zip | |
Remove wildcard exports/imports
Diffstat (limited to 'dungeon/tests')
| -rw-r--r-- | dungeon/tests/bsp.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/dungeon/tests/bsp.rs b/dungeon/tests/bsp.rs index b1287ee..f7919c5 100644 --- a/dungeon/tests/bsp.rs +++ b/dungeon/tests/bsp.rs @@ -1,8 +1,11 @@ //! Integration Tests for BSP dungeon generation #[cfg(test)] mod tests { - use dungeon::*; - use pos::Pos; + use dungeon::{ + bsp, + map::{self, TILE_COUNT}, + pos::Pos, + }; use rand::{Rng, SeedableRng, rngs::SmallRng}; /// Generate a set of test seeds for reproducibility with a seeded RNG |