8 lines
248 B
Rust
8 lines
248 B
Rust
#[test]
|
|
fn test_flags() {
|
|
assert!(!aconfig_test_rust_library::disabled_ro());
|
|
assert!(!aconfig_test_rust_library::disabled_rw());
|
|
assert!(aconfig_test_rust_library::enabled_ro());
|
|
assert!(aconfig_test_rust_library::enabled_rw());
|
|
}
|