aboutsummaryrefslogtreecommitdiff
path: root/tests/stream_collect.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stream_collect.rs')
-rw-r--r--tests/stream_collect.rs35
1 files changed, 0 insertions, 35 deletions
diff --git a/tests/stream_collect.rs b/tests/stream_collect.rs
index 70051e7..7ab1a34 100644
--- a/tests/stream_collect.rs
+++ b/tests/stream_collect.rs
@@ -2,8 +2,6 @@ use tokio::stream::{self, StreamExt};
use tokio::sync::mpsc;
use tokio_test::{assert_pending, assert_ready, assert_ready_err, assert_ready_ok, task};
-use bytes::{Bytes, BytesMut};
-
#[allow(clippy::let_unit_value)]
#[tokio::test]
async fn empty_unit() {
@@ -26,18 +24,6 @@ async fn empty_box_slice() {
}
#[tokio::test]
-async fn empty_bytes() {
- let coll: Bytes = stream::empty::<&[u8]>().collect().await;
- assert!(coll.is_empty());
-}
-
-#[tokio::test]
-async fn empty_bytes_mut() {
- let coll: BytesMut = stream::empty::<&[u8]>().collect().await;
- assert!(coll.is_empty());
-}
-
-#[tokio::test]
async fn empty_string() {
let coll: String = stream::empty::<&str>().collect().await;
assert!(coll.is_empty());
@@ -113,27 +99,6 @@ async fn collect_str_items() {
}
#[tokio::test]
-async fn collect_bytes() {
- let (tx, rx) = mpsc::unbounded_channel();
- let mut fut = task::spawn(rx.collect::<Bytes>());
-
- assert_pending!(fut.poll());
-
- tx.send(&b"hello "[..]).unwrap();
- assert!(fut.is_woken());
- assert_pending!(fut.poll());
-
- tx.send(&b"world"[..]).unwrap();
- assert!(fut.is_woken());
- assert_pending!(fut.poll());
-
- drop(tx);
- assert!(fut.is_woken());
- let coll = assert_ready!(fut.poll());
- assert_eq!(&b"hello world"[..], coll);
-}
-
-#[tokio::test]
async fn collect_results_ok() {
let (tx, rx) = mpsc::unbounded_channel();
let mut fut = task::spawn(rx.collect::<Result<String, &str>>());