mirror of
https://github.com/kbwo/testing-language-server.git
synced 2025-07-24 11:23:42 +00:00
chore: update demo
This commit is contained in:
parent
d3f3528c53
commit
7c5e365167
1 changed files with 28 additions and 0 deletions
|
@ -25,4 +25,32 @@ mod tests {
|
|||
async fn tokio_test_fail() {
|
||||
assert!(false);
|
||||
}
|
||||
|
||||
mod nested_namespace {
|
||||
fn not_test() {}
|
||||
|
||||
#[test]
|
||||
fn success() {
|
||||
assert!(true);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn fail() {
|
||||
assert!(false);
|
||||
}
|
||||
|
||||
mod nested_nested_namespace {
|
||||
fn not_test() {}
|
||||
|
||||
#[test]
|
||||
fn success() {
|
||||
assert!(true);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn fail() {
|
||||
assert!(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue