use crate::{Repository, Trending};
#[test]
fn parse_repo() {
let content = std::fs::read_to_string("./tests/repo-daily-2025-06-08.html").unwrap();
let trends: Trending<Repository> = Trending {
raw: content,
_t: std::marker::PhantomData,
};
let repos = trends.all();
assert!(!repos.is_empty());
}