summaryrefslogtreecommitdiff
path: root/support/texlab/tests/test_completion_bibtex_field.rs
blob: 766bcd7019ffcae1afff84b350bbc08f015c89f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pub mod support;

use support::completion::*;

const SCENARIO: &str = "bibtex/field";

#[tokio::test]
async fn incomplete_entry() {
    let item = run_item(SCENARIO, "foo.bib", 1, 6, "title").await;
    assert!(item.documentation.is_some());
    verify::text_edit(&item, 1, 4, 1, 8, "title");
}

#[tokio::test]
async fn complete_entry() {
    let item = run_item(SCENARIO, "foo.bib", 4, 5, "title").await;
    assert!(item.documentation.is_some());
    verify::text_edit(&item, 4, 4, 4, 9, "title");
}