diff options
| author | Charles Johnson <32775248+ChemicalXandco@users.noreply.github.com> | 2023-02-09 17:18:56 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-09 11:18:56 -0600 |
| commit | 48b2a37aa09f0302b40d0678cdde2703f919ed18 (patch) | |
| tree | 14354705cfd342c58bb93b80f26de2246da5494c /azalea-block/src | |
| parent | c23fae6e5dc2832f3649838f514eafb9dfa3e598 (diff) | |
| download | azalea-drasl-48b2a37aa09f0302b40d0678cdde2703f919ed18.tar.xz | |
derive `Debug` for `BlockState` (#64)
* derive `Debug` for `BlockState`
* change default Debug for BlockState
---------
Co-authored-by: Ubuntu <github@matdoes.dev>
Diffstat (limited to 'azalea-block/src')
| -rwxr-xr-x | azalea-block/src/lib.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/azalea-block/src/lib.rs b/azalea-block/src/lib.rs index 6d45fbf4..4a35be00 100755 --- a/azalea-block/src/lib.rs +++ b/azalea-block/src/lib.rs @@ -74,4 +74,13 @@ mod tests { let block: Box<dyn Block> = Box::<dyn Block>::from(BlockState::FloweringAzalea); assert_eq!(block.id(), "flowering_azalea"); } + + #[cfg(not(feature = "full-debug"))] + #[test] + fn test_debug_blockstate() { + assert_eq!( + format!("{:?}", BlockState::FloweringAzalea), + "BlockState (flowering_azalea)" + ); + } } |
