catalyst 0.2.0

A lightweight API testing tool
Documentation
1
2
3
4
5
6
7
8
use serde::Deserialize;
use crate::models::{Config, Test};

#[derive(Debug, Deserialize)]
pub struct TestSuite {
    pub config: Config,
    pub tests: Vec<Test>,
}