From 9265d1ab086c89f732ad842a0de0aa0742c4a127 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Mon, 9 Sep 2024 14:24:39 -0500 Subject: [PATCH] tests/rust-tools: add rust-analyzer-options test Make sure the import is working properly --- .../test-sources/plugins/by-name/rust-tools/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/test-sources/plugins/by-name/rust-tools/default.nix b/tests/test-sources/plugins/by-name/rust-tools/default.nix index bd1780f7..8b484ea3 100644 --- a/tests/test-sources/plugins/by-name/rust-tools/default.nix +++ b/tests/test-sources/plugins/by-name/rust-tools/default.nix @@ -71,4 +71,13 @@ }; }; }; + + rust-analyzer-options = { + plugins.rust-tools = { + enable = true; + server = { + assist.expressionFillDefault = "default"; + }; + }; + }; }