10 lines
157 B
Text
10 lines
157 B
Text
|
# -*- mode: snippet -*-
|
||
|
# name: async test
|
||
|
# uuid:
|
||
|
# key: atest
|
||
|
# condition: t
|
||
|
# --
|
||
|
#[tokio::test(threaded_scheduler)]
|
||
|
async fn ${1:test_name}() {
|
||
|
`%`$0
|
||
|
}
|