use dialtone_sqlx::control::user::create_with_actor::create_user_with_default_actor;
use dialtone_test_util::{test_action, test_pg};
#[tokio::test]
async fn create_user_with_default_actor_test() {
test_pg::test_pg(move |pool| async move {
let action =
create_user_with_default_actor(&pool, "test_user", "example.com", "secretpassword")
.await;
test_action!(action);
})
.await;
}