aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.dev>2026-02-16 08:52:35 +0200
committerBozhidar Batsov <bozhidar@batsov.dev>2026-02-16 08:52:35 +0200
commitf12fdae30a36e3614fa6944969bf37dec9998301 (patch)
tree50e48b12aeb501f2fdc36259b5c93f6fc3104fe5 /test
parentdd06dfd912656d41f2c63066aa8bacb898ddf7a2 (diff)
Support slnx files for dotnet-sln project types (#1971)
Diffstat (limited to 'test')
-rw-r--r--test/projectile-test.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/projectile-test.el b/test/projectile-test.el
index d896ba3..f35c6a0 100644
--- a/test/projectile-test.el
+++ b/test/projectile-test.el
@@ -1454,6 +1454,14 @@ Just delegates OPERATION and ARGS for all operations except for`shell-command`'.
(let ((projectile-indexing-method 'native))
(spy-on 'projectile-project-root :and-return-value (file-truename (expand-file-name "project/")))
(expect (projectile-detect-project-type) :to-equal 'dotnet-sln)))))
+ (it "detects project-type for dotnet slnx projects"
+ (projectile-test-with-sandbox
+ (projectile-test-with-files
+ ("project/"
+ "project/Project.slnx")
+ (let ((projectile-indexing-method 'native))
+ (spy-on 'projectile-project-root :and-return-value (file-truename (expand-file-name "project/")))
+ (expect (projectile-detect-project-type) :to-equal 'dotnet-sln)))))
(it "detects project-type for Julia PkgTemplates.jl projects"
(projectile-test-with-sandbox
(projectile-test-with-files