diff options
| author | Bozhidar Batsov <bozhidar@batsov.dev> | 2026-02-16 08:52:35 +0200 |
|---|---|---|
| committer | Bozhidar Batsov <bozhidar@batsov.dev> | 2026-02-16 08:52:35 +0200 |
| commit | f12fdae30a36e3614fa6944969bf37dec9998301 (patch) | |
| tree | 50e48b12aeb501f2fdc36259b5c93f6fc3104fe5 /test | |
| parent | dd06dfd912656d41f2c63066aa8bacb898ddf7a2 (diff) | |
Support slnx files for dotnet-sln project types (#1971)
Diffstat (limited to 'test')
| -rw-r--r-- | test/projectile-test.el | 8 |
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 |
