Newer
Older
TelosDB / src / backend / tests / test_sea_orm_only.rs
@楽曲作りまくりおじさん 楽曲作りまくりおじさん 9 hours ago 195 bytes refactor(journals): mask absolute paths and update environment docs
use sea_orm::Database;

#[tokio::test]
async fn test_sea_orm_only() {
    let _conn = Database::connect("sqlite::memory:").await.unwrap();
    println!("SeaORM connected to in-memory sqlite");
}