chore: implement unit test

This commit is contained in:
Maulana Sodiqin
2025-03-23 07:56:43 +07:00
parent 093e290221
commit 79721b7af6
17 changed files with 1384 additions and 26 deletions
+2
View File
@@ -17,6 +17,7 @@ pub struct UsersSchema {
pub referred_by: Option<String>,
pub identity_number: Option<String>,
pub is_active: bool,
pub is_deleted: bool,
pub student_type: String,
pub religion: Option<String>,
pub gender: Option<String>,
@@ -43,6 +44,7 @@ impl Default for UsersSchema {
referred_by: None,
identity_number: None,
is_active: false,
is_deleted: false,
student_type: String::new(),
religion: None,
gender: None,