[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Unit testing problem/question
- From: Elias Barrionovo <elias.tandel@...>
- Date: Fri, 28 Sep 2012 17:42:24 -0300
George, I'm not sure what the problem is, but I have some suggestions:
1) Try defining your testcase with package.seeall, like in lunit's
documentation [1]:
module( "my_testcase", lunit.testcase, package.seeall )
2) It's been long since I last used lunit, but if I remeber
correctly, you should put the functions / moduels you use on local
variables before requiring lunit:
local print = print
require 'lunit'
module("my_testcase", lunit.testcase, package.seeall)
assert_function(print)
I didn't test the suggestions / codes above, but I hope they are useful.
--
NI!