lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]



Quoting Russell Haley <russ.haley@gmail.com>:


 Not sure if it meets your requirements but a friend is creating a
testing framework for his toolkit here:
https://github.com/tobbik/lua-t

Cheers,

Russ

lua-t is still in the midst of being stabilised. It's an ambitious project including
networking, asynchronous loop, binary packing etc.

The unit tests in it are part of the more stable yet not finished code though. It
allows for both, fixed and random order, has beforeEach/afterEach and
beforeAll/afterAll hooks, time measuring(test case only, hooks are not measured),
TAP reports, pretty straight forward API but no colourful output :-P

Here are the docs:
https://github.com/tobbik/lua-t/blob/master/docs/T.Test.rst
https://github.com/tobbik/lua-t/blob/master/docs/T.Test.Case.rst

Yet again, it's pre-alpha. But if someone likes to have a look and give some opinon
it's always welcome :-)

 -tobbik