chorus/tests/auth.rs

17 lines
418 B
Rust

use chorus::types::RegisterSchema;
mod common;
#[tokio::test]
async fn test_registration() {
let bundle = common::setup().await;
let reg = RegisterSchema {
username: "Hiiii".into(),
date_of_birth: Some("2000-01-01".to_string()),
consent: true,
..Default::default()
};
bundle.instance.clone().register_account(reg).await.unwrap();
common::teardown(bundle).await;
}