You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log::info!("fetched path {} and got content {}", path, data);
708
+
log::info!("fetched path {} and got content {}\nhelp: if this is missing the header, remember to add <html><head></head><body></body></html>", path, data);
699
709
let dom = kuchiki::parse_html().one(data);
700
710
701
711
ifletSome(elem) = dom
@@ -1651,6 +1661,32 @@ mod test {
1651
1661
});
1652
1662
}
1653
1663
1664
+
#[test]
1665
+
fnlatest_version_works_when_source_deleted(){
1666
+
wrapper(|env| {
1667
+
env.fake_release()
1668
+
.name("pyo3")
1669
+
.version("0.2.7")
1670
+
.source_file("src/objects/exc.rs",b"//! some docs")
0 commit comments