From c1ba225e62f4c9048bcca387419028ee83eefc15 Mon Sep 17 00:00:00 2001 From: The Magician Date: Sat, 18 Nov 2023 12:46:28 +0000 Subject: [PATCH] Fix test file naming scheme --- spec/nextfile_spec.lua | 7 +++++++ tests/test-nextfile.lua | 2 -- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 spec/nextfile_spec.lua delete mode 100644 tests/test-nextfile.lua diff --git a/spec/nextfile_spec.lua b/spec/nextfile_spec.lua new file mode 100644 index 0000000..48a2e4d --- /dev/null +++ b/spec/nextfile_spec.lua @@ -0,0 +1,7 @@ +describe("nextfile", function() + local nextfile = require "nextfile" + + it("returns true", function() + assert.is_true(nextfile.nextfile()) + end) +end) diff --git a/tests/test-nextfile.lua b/tests/test-nextfile.lua deleted file mode 100644 index 1294d35..0000000 --- a/tests/test-nextfile.lua +++ /dev/null @@ -1,2 +0,0 @@ -describe("nextfile", function() -end)