rust-actions 0.2.1

BDD testing framework with GitHub Actions YAML syntax
Documentation
1
2
3
4
5
6
use crate::Result;
use std::future::Future;

pub trait World: Sized + Send + Sync + 'static {
    fn new() -> impl Future<Output = Result<Self>> + Send;
}