SatHtml {
sat: Sat::LAST,
satpoint: None,
blocktime: Blocktime::confirmed(0),
inscriptions: Vec::new(),
},
r"
Sat 2099999997689999
.*prev\nnext.*",
);
}
#[test]
fn sat_with_satpoint() {
assert_regex_match!(
SatHtml {
sat: Sat(0),
satpoint: Some(satpoint(1, 0)),
blocktime: Blocktime::confirmed(0),
inscriptions: Vec::new(),
},
"Sat 0
.*location1{64}:1:0.*",
);
}
}