init commit
This commit is contained in:
17
tests/tasks/seed.rs
Normal file
17
tests/tasks/seed.rs
Normal file
@@ -0,0 +1,17 @@
|
||||
use loco_rs::{boot::run_task, task, testing};
|
||||
use gabrielkaszewski_rs::app::App;
|
||||
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());
|
||||
}
|
Reference in New Issue
Block a user