diff --git a/services/commtest/tests/backup_test.rs b/services/commtest/tests/backup_test.rs new file mode 100644 index 000000000..1745ffcb6 --- /dev/null +++ b/services/commtest/tests/backup_test.rs @@ -0,0 +1,7 @@ +#[path = "./lib/tools.rs"] +mod tools; + +#[tokio::test] +async fn backup_test() { + assert!(false, "not implemented"); +} diff --git a/services/commtest/tests/blob_test.rs b/services/commtest/tests/blob_test.rs new file mode 100644 index 000000000..504baa178 --- /dev/null +++ b/services/commtest/tests/blob_test.rs @@ -0,0 +1,7 @@ +#[path = "./lib/tools.rs"] +mod tools; + +#[tokio::test] +async fn blob_test() { + assert!(false, "not implemented"); +} diff --git a/services/commtest/tests/tunnelbroker_test.rs b/services/commtest/tests/tunnelbroker_test.rs new file mode 100644 index 000000000..443eb9739 --- /dev/null +++ b/services/commtest/tests/tunnelbroker_test.rs @@ -0,0 +1,7 @@ +#[path = "./lib/tools.rs"] +mod tools; + +#[tokio::test] +async fn tunnelbroker_test() { + assert!(false, "not implemented"); +}