browserslist/queries/
op_mini.rsuse super::{Distrib, QueryResult};
pub(super) fn op_mini() -> QueryResult {
Ok(vec![Distrib::new("op_mini", "all")])
}
#[cfg(test)]
mod tests {
use crate::{opts::Opts, test::run_compare};
use test_case::test_case;
#[test_case("op_mini all"; "short")]
#[test_case("Op_Mini All"; "short case insensitive")]
#[test_case("operamini all"; "long")]
#[test_case("OperaMini All"; "long case insensitive")]
#[test_case("op_mini all"; "more spaces")]
fn valid(query: &str) {
run_compare(query, &Opts::new());
}
}