aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers/lua/dummy_package.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/helpers/lua/dummy_package.lua')
-rw-r--r--tests/helpers/lua/dummy_package.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/helpers/lua/dummy_package.lua b/tests/helpers/lua/dummy_package.lua
deleted file mode 100644
index b38d1cd8..00000000
--- a/tests/helpers/lua/dummy_package.lua
+++ /dev/null
@@ -1,14 +0,0 @@
-local Pkg = require "mason-core.package"
-
-return Pkg.new {
- name = "dummy",
- desc = [[This is a dummy package.]],
- categories = { Pkg.Cat.LSP },
- languages = { Pkg.Lang.DummyLang },
- homepage = "https://example.com",
- ---@async
- ---@param ctx InstallContext
- install = function(ctx)
- ctx.receipt:with_primary_source { type = "dummy" }
- end,
-}