summaryrefslogtreecommitdiff
path: root/support/texlab/tests/test_completion_latex_user.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/tests/test_completion_latex_user.rs')
-rw-r--r--support/texlab/tests/test_completion_latex_user.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/support/texlab/tests/test_completion_latex_user.rs b/support/texlab/tests/test_completion_latex_user.rs
deleted file mode 100644
index d17a5c3f6a..0000000000
--- a/support/texlab/tests/test_completion_latex_user.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-pub mod support;
-
-use support::completion::*;
-
-const SCENARIO: &str = "latex/user";
-
-#[tokio::test]
-async fn command() {
- let item = run_item(SCENARIO, "foo.tex", 1, 3, "foo").await;
- verify::text_edit(&item, 1, 1, 1, 3, "foo");
- verify::detail(&item, "user-defined");
-}
-
-#[tokio::test]
-async fn environment() {
- let item = run_item(SCENARIO, "foo.tex", 4, 7, "foo").await;
- verify::text_edit(&item, 4, 7, 4, 9, "foo");
- verify::detail(&item, "user-defined");
-}