Coding 2022-09-03

By Max Woerner Chase

I got a bunch of tooling more-or-less working for developing with Lua. We'll see if it all actually works out, because I was just focusing on getting things to more-or-less pass. Right now, I'm trying out:

local t = require "lunit"

local m = t.TEST_CASE "<test file name>"

function m.test_etc() end

return m

With this, I'm not creating any globals, and it's all working through lunitx's compatibility layers, so it can discover the tests. Now, I need to get to writing some code so I can test it.

Some of that code may end up being random bits of scaffolding, because, Lua. Anyway, I feel like I've written enough, and I don't want to delay this post any.

Good night.