grass/benches/colors.rs

22 lines
617 B
Rust
Raw Normal View History

2020-05-20 22:51:56 -04:00
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use grass::StyleSheet;
pub fn many_hsla(c: &mut Criterion) {
c.bench_function("many_hsla", |b| {
b.iter(|| StyleSheet::new(black_box(include_str!("many_hsla.scss").to_string())))
});
}
pub fn many_named_colors(c: &mut Criterion) {
c.bench_function("many_named_colors", |b| {
b.iter(|| {
StyleSheet::new(black_box(
include_str!("many_named_colors.scss").to_string(),
))
})
});
}
criterion_group!(benches, many_hsla, many_named_colors,);
criterion_main!(benches);