daily-aujourdhui/tests/tasks/seed.rs

18 lines
382 B
Rust
Raw Normal View History

2024-12-04 20:13:44 +00:00
use daily_aujourdhui::app::App;
2024-12-05 01:05:45 +00:00
use loco_rs::{boot::run_task, task, testing};
2024-12-04 20:13:44 +00:00
use serial_test::serial;
#[tokio::test]
#[serial]
async fn test_can_seed_data() {
let boot = testing::boot_test::<App>().await.unwrap();
assert!(run_task::<App>(
&boot.app_context,
Some(&"seed_data".to_string()),
&task::Vars::default()
)
.await
.is_ok());
}