mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-07-22 13:43:33 +01:00
65f4fe7af1
Co-authored-by: Will <7099514+Willburd@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
13 lines
454 B
Plaintext
13 lines
454 B
Plaintext
/datum/unit_test/all_slimes_must_have_research_values
|
|
|
|
/datum/unit_test/all_slimes_must_have_research_values/Run()
|
|
var/failed = FALSE
|
|
|
|
for(var/slime in subtypesof(/obj/item/slime_extract))
|
|
if(!(slime in SSresearch.techweb_point_items))
|
|
TEST_NOTICE(src, "Slimes - [slime] type did not have a SSresearch.techweb_point_items value associated with it.")
|
|
failed = TRUE
|
|
|
|
if(failed)
|
|
TEST_FAIL("All xenobio slimes must have a research point value")
|