roblox_bot_file: hide file tests behind feature flag

Files are missing from git tree which causes `cargo test` run on the repository root to fail.  This change means that all tests from all modules now pass.
This commit is contained in:
Quaternions 2025-01-03 03:18:42 -08:00
parent 5b019a190c
commit 91142ba881
2 changed files with 6 additions and 0 deletions

View File

@ -6,3 +6,6 @@ edition = "2021"
[dependencies]
binrw = "0.14.1"
bitflags = "2.6.0"
[features]
test=[]

View File

@ -1,3 +1,5 @@
#[cfg(feature="test")]
mod file{
use crate::v0::TimedBlockId;
#[test]
@ -39,3 +41,4 @@ fn _2()->Result<(),crate::v0::Error>{
Ok(())
}
}