dfhack/test/plugins/workflow.lua

10 lines
276 B
Lua

config.target = 'workflow'
local workflow = require('plugins.workflow')
function test.job_outputs()
for job_type in pairs(workflow.test_data.job_outputs) do
expect.ne(df.job_type[job_type], nil, "Found unrecognized job type: " .. tostring(job_type))
end
end