8 lines
216 B
Rust
8 lines
216 B
Rust
#[tokio::test]
|
|
#[ignore]
|
|
async fn register_and_get_me() {
|
|
// This integration test is a placeholder. It requires a running DB and server.
|
|
// Marked #[ignore] to avoid running by default.
|
|
assert!(true);
|
|
}
|