From 85f53fed3026366c3970e26e2843be3d8e702c20 Mon Sep 17 00:00:00 2001 From: Aki Date: Wed, 7 Feb 2024 22:21:19 +0100 Subject: Added plain format It is intended mostly for testing purposes --- spec/activity_spec.lua | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 spec/activity_spec.lua (limited to 'spec/activity_spec.lua') diff --git a/spec/activity_spec.lua b/spec/activity_spec.lua new file mode 100644 index 0000000..634a228 --- /dev/null +++ b/spec/activity_spec.lua @@ -0,0 +1,49 @@ +local activity = require "activity" +local plain = require "activity.formats.plain" + +local Y2024 = [[ + _0000000000000000000000000000000000000000000000000000 +Mon 00000000000000000000000000000000000000000000000000000 + 00000000000000000000000000000000000000000000000000000 +Wed 0000000000000000000000000000000000000000000000000000_ + 0000000000000000000000000000000000000000000000000000_ +Fri 0000000000000000000000000000000000000000000000000000_ + 0000000000000000000000000000000000000000000000000000_ +]] + +local Y2023 = [[ + 00000000000000000000000000000000000000000000000000000 +Mon 0000000000000000000000000000000000000000000000000000_ + 0000000000000000000000000000000000000000000000000000_ +Wed 0000000000000000000000000000000000000000000000000000_ + 0000000000000000000000000000000000000000000000000000_ +Fri 0000000000000000000000000000000000000000000000000000_ + 0000000000000000000000000000000000000000000000000000_ +]] + +local Y2020 = [[ + _0000000000000000000000000000000000000000000000000000 +Mon _0000000000000000000000000000000000000000000000000000 + _0000000000000000000000000000000000000000000000000000 +Wed 00000000000000000000000000000000000000000000000000000 + 00000000000000000000000000000000000000000000000000000 +Fri 0000000000000000000000000000000000000000000000000000_ + 0000000000000000000000000000000000000000000000000000_ +]] + + +describe("Generator", function() + describe("shall generate correct table for year", function() + it("2024", function() + assert.are.equal(Y2024, activity.generate_table(2024, {}, plain)) + end) + + it("2023", function() + assert.are.equal(Y2023, activity.generate_table(2023, {}, plain)) + end) + + it("2020", function() + assert.are.equal(Y2020, activity.generate_table(2020, {}, plain)) + end) + end) +end) -- cgit v1.1