1
0
mirror of https://github.com/bspeice/qadapt synced 2024-09-20 17:01:31 -04:00

Add a release-only test for is_active() behavior

This commit is contained in:
Bradlee Speice 2019-01-20 15:20:59 -05:00
parent 640269ff10
commit 8df83a56b1

10
tests/inactive_release.rs Normal file
View File

@ -0,0 +1,10 @@
use qadapt::QADAPT;
#[global_allocator]
static Q: QADAPT = QADAPT;
#[cfg(not(debug_assertions))]
#[test]
fn release_only_inactive() {
assert!(!qadapt::is_active());
}