forked from StrafesNET/strafe-project
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:
parent
5b019a190c
commit
91142ba881
@ -6,3 +6,6 @@ edition = "2021"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
binrw = "0.14.1"
|
binrw = "0.14.1"
|
||||||
bitflags = "2.6.0"
|
bitflags = "2.6.0"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
test=[]
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
#[cfg(feature="test")]
|
||||||
|
mod file{
|
||||||
use crate::v0::TimedBlockId;
|
use crate::v0::TimedBlockId;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
@ -39,3 +41,4 @@ fn _2()->Result<(),crate::v0::Error>{
|
|||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user