rototo 0.1.0-alpha.3

Control plane for runtime configuration of your application.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::path::Path;

use crate::error::Result;
use crate::fixtures::FixtureAssertionReport;
use crate::sdk::Workspace;

pub async fn assert_fixtures(
    workspace: &Workspace,
    suite_path: impl AsRef<Path>,
) -> Result<FixtureAssertionReport> {
    crate::fixtures::assert_fixtures(workspace, suite_path).await
}