Sign in
fuchsia
/
third_party
/
rust-crates
/
97afebff020971f95b41200fca9591be994db3e4
/
.
/
rustc_deps
/
vendor
/
stb_truetype
/
tests
/
mod.rs
blob: 931ff1e2458369c63962e6aebcb223a7800ec37e [
file
] [
log
] [
blame
]
extern
crate stb_truetype
;
mod
tests
{
use
stb_truetype
;
#[
test
]
fn
is_font
()
{
assert
!(
stb_truetype
::
is_font
(
b
"OTTO"
));
assert
!(!
stb_truetype
::
is_font
(
b
""
));
}
}