diff --git a/lua/aoc/utils.lua b/lua/aoc/utils.lua deleted file mode 100644 index fb4f1df..0000000 --- a/lua/aoc/utils.lua +++ /dev/null @@ -1,4 +0,0 @@ ----@class Utility -local M = {} - -return M diff --git a/tests/aoc/aoc_spec.lua b/tests/aoc/aoc_spec.lua deleted file mode 100644 index 0916f71..0000000 --- a/tests/aoc/aoc_spec.lua +++ /dev/null @@ -1,12 +0,0 @@ --- local plugin = require "aoc" - --- describe("setup", function() --- it("works with default", function() --- assert(plugin.hello() == "Hello!", "my first function with param = Hello!") --- end) --- --- it("works with custom var", function() --- plugin.setup { opt = "custom" } --- assert(plugin.hello() == "custom", "my first function with param = custom") --- end) --- end) diff --git a/tests/aoc/api_spec.lua b/tests/aoc/api_spec.lua deleted file mode 100644 index e69de29..0000000 diff --git a/tests/aoc/cache_spec.lua b/tests/aoc/cache_spec.lua deleted file mode 100644 index e69de29..0000000 diff --git a/tests/aoc/config_spec.lua b/tests/aoc/config_spec.lua deleted file mode 100644 index e69de29..0000000 diff --git a/tests/minimal_init.lua b/tests/minimal_init.lua deleted file mode 100644 index 83b6b8d..0000000 --- a/tests/minimal_init.lua +++ /dev/null @@ -1,11 +0,0 @@ -local plenary_dir = os.getenv "PLENARY_DIR" or "/tmp/plenary.nvim" -local is_not_a_directory = vim.fn.isdirectory(plenary_dir) == 0 -if is_not_a_directory then - vim.fn.system { "git", "clone", "https://github.com/nvim-lua/plenary.nvim", plenary_dir } -end - -vim.opt.rtp:append "." -vim.opt.rtp:append(plenary_dir) - -vim.cmd "runtime plugin/plenary.vim" -require "plenary.busted"