mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-11 10:22:13 +00:00
7 lines
276 B
Plaintext
7 lines
276 B
Plaintext
/datum/unit_test/reactions/Run()
|
|
for(var/datum/gas_reaction/G in SSair.gas_reactions)
|
|
var/test_info = G.test()
|
|
if(!test_info["success"])
|
|
var/message = test_info["message"]
|
|
Fail("Gas reaction [G.name] is failing its unit test with the following message: [message]")
|