diff options
| author | William Boman <william@redwill.se> | 2022-07-08 18:34:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-08 18:34:38 +0200 |
| commit | 976aa4fbee8a070f362cab6f6ec84e9251a90cf9 (patch) | |
| tree | 5e8d9c9c59444a25c7801b8f39763c4ba6e1f76d /tests/core/path_spec.lua | |
| parent | feat: add gotests, gomodifytags, impl (#28) (diff) | |
| download | mason-976aa4fbee8a070f362cab6f6ec84e9251a90cf9.tar mason-976aa4fbee8a070f362cab6f6ec84e9251a90cf9.tar.gz mason-976aa4fbee8a070f362cab6f6ec84e9251a90cf9.tar.bz2 mason-976aa4fbee8a070f362cab6f6ec84e9251a90cf9.tar.lz mason-976aa4fbee8a070f362cab6f6ec84e9251a90cf9.tar.xz mason-976aa4fbee8a070f362cab6f6ec84e9251a90cf9.tar.zst mason-976aa4fbee8a070f362cab6f6ec84e9251a90cf9.zip | |
refactor: add mason-schemas and mason-core modules (#29)
* refactor: add mason-schemas and move generated filetype map to mason-lspconfig
* refactor: add mason-core module
Diffstat (limited to 'tests/core/path_spec.lua')
| -rw-r--r-- | tests/core/path_spec.lua | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/core/path_spec.lua b/tests/core/path_spec.lua deleted file mode 100644 index 3d05fd14..00000000 --- a/tests/core/path_spec.lua +++ /dev/null @@ -1,23 +0,0 @@ -local path = require "mason.core.path" - -describe("path", function() - it("concatenates paths", function() - assert.equal("foo/bar/baz/~", path.concat { "foo", "bar", "baz", "~" }) - end) - - it("concatenates paths on Windows", function() - local old_os = jit.os - jit.os = "windows" - package.loaded["mason.core.path"] = nil - local path = require "mason.core.path" - assert.equal([[foo\bar\baz\~]], path.concat { "foo", "bar", "baz", "~" }) - jit.os = old_os - end) - - it("identifies subdirectories", function() - assert.is_true(path.is_subdirectory("/foo/bar", "/foo/bar/baz")) - assert.is_true(path.is_subdirectory("/foo/bar", "/foo/bar")) - assert.is_false(path.is_subdirectory("/foo/bar", "/foo/bas/baz")) - assert.is_false(path.is_subdirectory("/foo/bar", "/foo/bars/baz")) - end) -end) |
