dfhack/test/plugins/workflow.lua

10 lines
276 B
Lua

2023-08-04 21:40:24 -06:00
config.target = 'workflow'
local workflow = require('plugins.workflow')
function test.job_outputs()
for job_type in pairs(workflow.test_data.job_outputs) do
2020-12-16 11:16:04 -07:00
expect.ne(df.job_type[job_type], nil, "Found unrecognized job type: " .. tostring(job_type))
end
end