Files
S.P.L.U.R.T-Station-13/code/modules/unit_tests/crafting_recipes.dm
BongaTheProtoandTsurupeta dfdbd259da unit test
this is the easy part, believe it or not
2023-08-08 14:01:13 +03:00

8 lines
284 B
Plaintext

/datum/unit_test/crafting_recipes/Run()
for(var/i in GLOB.crafting_recipes)
var/datum/crafting_recipe/R = i
if(!R.subcategory)
TEST_FAIL("Invalid subcategory on [R] ([R.type]).")
if(!R.category && (R.category != CAT_NONE))
TEST_FAIL("Invalid category on [R] ([R.type])")