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