floop 0.3.0

A more convenient and less error prone replacement for loop `{ select! { .. }}`
Documentation
use floop::floop;
use smol::block_on;

#[test]
fn empty_biased() {
    let future = floop! {
        biased
    };

    block_on(
        #[allow(clippy::redundant_async_block)]
        async {
            future.await
        }
    );
}

#[test]
fn empty_unbiased() {
    let future = floop! {
        unbiased
    };
    block_on(
        #[allow(clippy::redundant_async_block)]
        async {
            future.await
        }
    );
}