tests/blob_writer.rs: make it work again
This commit is contained in:
parent
7f388acea8
commit
152a926149
|
@ -78,24 +78,6 @@ fn test_compressed_blob_writer() -> Result<(), Error> {
|
||||||
verify_test_blob(blob_writer.finish()?)
|
verify_test_blob(blob_writer.finish()?)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_signed_blob_writer() -> Result<(), Error> {
|
|
||||||
let tmp = Cursor::new(Vec::<u8>::new());
|
|
||||||
let mut blob_writer = DataBlobWriter::new_signed(tmp, CRYPT_CONFIG.clone())?;
|
|
||||||
blob_writer.write_all(&TEST_DATA)?;
|
|
||||||
|
|
||||||
verify_test_blob(blob_writer.finish()?)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_signed_compressed_blob_writer() -> Result<(), Error> {
|
|
||||||
let tmp = Cursor::new(Vec::<u8>::new());
|
|
||||||
let mut blob_writer = DataBlobWriter::new_signed_compressed(tmp, CRYPT_CONFIG.clone())?;
|
|
||||||
blob_writer.write_all(&TEST_DATA)?;
|
|
||||||
|
|
||||||
verify_test_blob(blob_writer.finish()?)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_encrypted_blob_writer() -> Result<(), Error> {
|
fn test_encrypted_blob_writer() -> Result<(), Error> {
|
||||||
let tmp = Cursor::new(Vec::<u8>::new());
|
let tmp = Cursor::new(Vec::<u8>::new());
|
||||||
|
|
Loading…
Reference in New Issue