Files
Paradise/code/tests/test_crafting_lists.dm
warriorstar-orion bb60a027bf unit->game tests, /tg/ assertions and allocations (#27646)
* unit->game tests, /tg/ assertions and allocations

* whoopsies

* fix lint
2024-12-21 21:19:33 +00:00

5 lines
209 B
Plaintext

/datum/game_test/crafting_lists/Run()
for(var/I in subtypesof(/datum/crafting_recipe))
var/datum/crafting_recipe/C = new I()
TEST_ASSERT(islist(C.result), "Expected a list for the 'result' of [C.type].")