summaryrefslogtreecommitdiffstats
path: root/tests/connect_test.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-11-27 10:46:34 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-11-27 10:50:11 +0100
commit2e78de6b2c50625ff4f9032157d097744598de65 (patch)
treeefd5c4d0ab2a866fe65cbb007976eb10df3aba1d /tests/connect_test.rs
parent88515ac848d105c8c84efb2faea31b530a0554ee (diff)
Move tests to source
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
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();
-}
-