summaryrefslogtreecommitdiffstats
path: root/tests/connect_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/connect_test.rs')
-rw-r--r--tests/connect_test.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/connect_test.rs b/tests/connect_test.rs
deleted file mode 100644
index 0e66f07..0000000
--- a/tests/connect_test.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-use distrox::ipfs_client::IpfsClient;
-
-#[test]
-fn test_connect_str() {
- let _ = IpfsApi::from_str("http://localhost:5001").unwrap();
-}
-
-#[test]
-fn test_connect_host_and_port() {
- let _ = IpfsApi::from_host_and_port("localhost", 5001).unwrap();
-}
-