Don't run doc test since it will panic

This commit is contained in:
Ryan Levick 2020-06-16 18:54:42 +02:00
parent 96354ffa09
commit 5e76689f49

View file

@ -188,7 +188,7 @@ impl<R: Read + io::Seek> ZipArchive<R> {
/// Number of files contained in this zip. /// Number of files contained in this zip.
/// ///
/// ``` /// ```no_run
/// let mut zip = zip::ZipArchive::new(std::io::Cursor::new(vec![])).unwrap(); /// let mut zip = zip::ZipArchive::new(std::io::Cursor::new(vec![])).unwrap();
/// ///
/// for i in 0..zip.len() { /// for i in 0..zip.len() {