Created
July 16, 2022 17:49
-
-
Save deepal/151e33856bec1eb5daa1331f2d5d7532 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe("sum module", function () | |
it("should return the sum of two numbers", function () | |
local sum = require "lib.sum" | |
local result = sum(100, 200) | |
assert.are.same(300, result) | |
end) | |
end) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment