mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
* SMs will now dust you if it runs into you * including the unit tests * attempt two at merging the unit tests * every gosh dang time, indentation fix
12 lines
394 B
Plaintext
12 lines
394 B
Plaintext
/datum/unit_test/supermatter/start()
|
|
|
|
/datum/unit_test/supermatter/airflow_hit/start()
|
|
var/turf/pos = locate(101, 100, 1) // Nice place with a good atmosphere
|
|
var/mob/living/carbon/human/human = new(pos)
|
|
var/obj/machinery/power/supermatter/shard/shard = new(pos)
|
|
shard.airflow_hit(human)
|
|
assert_eq(human.stat, DEAD)
|
|
human = new(pos)
|
|
human.airflow_hit(shard)
|
|
assert_eq(human.stat, DEAD)
|