Unit Testing Framework: What do you use?

I was trying to configure luaunit to do unit testing against my Corona code, but I’ve run into this:
ERROR: loadstring() is not available in Corona

I get that Corona runs Lua in a sandbox and essentially won’t let you eval() code at runtime, which is what luaunit wants to do to invoke tests. What approach do others use for automated unit testing with Corona SDK? There are other toolkits I can look at, but if none of them are going to work I figure I might as well not waste my time.
[import]uid: 107045 topic_id: 19746 reply_id: 319746[/import]

I found this thread and got lua-TestMore in place and working.

http://developer.anscamobile.com/forum/2011/01/10/tdd-test-driven-development

Looks like it’s going to work well. The docs are a little bit opaque, but not too bad. One thing I figured was that, although they tell you to do something like:

local test_count = 2
plan(test_count)
– run 2 tests
done_testing(test_count)

If you just never call done_testing() then you can run as many tests as you like, but if you do call done_testing() you’ll get errors if you run additional tests.
[import]uid: 107045 topic_id: 19746 reply_id: 76532[/import]