Vendor dependencies

Let's see how I like this workflow.
This commit is contained in:
John Doty 2022-12-19 08:27:18 -08:00
parent 34d1830413
commit 9c435dc440
7500 changed files with 1665121 additions and 99 deletions

20
vendor/flate2/tests/early-flush.rs vendored Normal file
View file

@ -0,0 +1,20 @@
extern crate flate2;
use std::io::{Read, Write};
use flate2::read::GzDecoder;
use flate2::write::GzEncoder;
#[test]
fn smoke() {
let mut w = GzEncoder::new(Vec::new(), flate2::Compression::default());
w.flush().unwrap();
w.write_all(b"hello").unwrap();
let bytes = w.finish().unwrap();
let mut r = GzDecoder::new(&bytes[..]);
let mut s = String::new();
r.read_to_string(&mut s).unwrap();
assert_eq!(s, "hello");
}