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);
700
+
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);
691
701
let dom = kuchiki::parse_html().one(data);
692
702
693
703
ifletSome(elem) = dom
@@ -1643,6 +1653,32 @@ mod test {
1643
1653
});
1644
1654
}
1645
1655
1656
+
#[test]
1657
+
fnlatest_version_works_when_source_deleted(){
1658
+
wrapper(|env| {
1659
+
env.fake_release()
1660
+
.name("pyo3")
1661
+
.version("0.2.7")
1662
+
.source_file("src/objects/exc.rs",b"//! some docs")
0 commit comments