From 99c379870f2ec01f15b26488e37bff9e3e3af168 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 15 Feb 2018 15:51:14 -0800 Subject: [PATCH] Added test. --- tests.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests.lua b/tests.lua index c6dec3f..18f3ebb 100644 --- a/tests.lua +++ b/tests.lua @@ -101,6 +101,10 @@ test("Testing singletons", function() assert(T1() ~= T2()) end) +test("Testing extra args", function() + assert(not pcall(function() Vec(1,2,3) end)) +end) + test("Testing __add metamethod", function() assert(v + Vec(5,6) == Vec(6,9)) end)