use crate::generate::utils::ProcessError;
use std::io::Error as IOError;
use thiserror::Error;
pub static PETSTORE_YAML: &'static str = include_str!("testing/petstore.yaml");
pub static TESTING_SPEC_FILE_NAME: &'static str = "petshoppe_test_spec.yaml";
pub static TEST_SUBDIR_NAME: &'static str = "testing";
pub static TEST_API_URL: &'static str = "https://www.petshoppe.example";
pub static TEST_API_NAME: &'static str = "PetShoppe";
#[derive(Debug, Error)]
pub enum TestingError {
#[error(transparent)]
IOError(#[from] IOError),
#[error(transparent)]
ProcessError(#[from] ProcessError),
}