pretty assert

This commit is contained in:
veeso
2021-05-06 21:57:04 +02:00
parent c0eb98c3f9
commit 892be42988
33 changed files with 101 additions and 1 deletions

View File

@@ -775,6 +775,8 @@ mod tests {
use super::*;
use crate::utils::fmt::fmt_time;
use pretty_assertions::assert_eq;
use std::time::Duration;
#[test]

View File

@@ -332,6 +332,7 @@ mod tests {
use super::*;
use pretty_assertions::assert_eq;
use std::str::FromStr;
use std::string::ToString;

View File

@@ -885,6 +885,7 @@ impl FileTransfer for ScpFileTransfer {
mod tests {
use super::*;
use pretty_assertions::assert_eq;
#[test]
fn test_filetransfer_scp_new() {

View File

@@ -702,6 +702,8 @@ mod tests {
use super::*;
use pretty_assertions::assert_eq;
#[test]
fn test_filetransfer_sftp_new() {
let client: SftpFileTransfer = SftpFileTransfer::new(SshKeyStorage::empty());