forked from DFHack/dfhack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test that removeJob() actually removes jobs
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
config.target = 'core' | ||
config.mode = 'title' -- alters world state, not safe when a world is loaded | ||
|
||
function test.removeJob() | ||
-- removeJob() calls DF code, so ensure that that DF code is actually running | ||
|
||
-- for an explanation of why this is necessary to check, | ||
-- see https://github.com/DFHack/dfhack/pull/3713 and Job.cpp:removeJob() | ||
|
||
expect.nil_(df.global.world.jobs.list.next, 'job list is not empty') | ||
|
||
local job = df.job:new() -- will be deleted by removeJob() if the test passes | ||
dfhack.job.linkIntoWorld(job) | ||
expect.true_(df.global.world.jobs.list.next, 'job list is empty') | ||
expect.eq(df.global.world.jobs.list.next.item, job, 'expected job not found in list') | ||
|
||
expect.true_(dfhack.job.removeJob(job)) | ||
expect.nil_(df.global.world.jobs.list.next, 'job list is not empty after removeJob()') | ||
end |