mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 17:52:36 +00:00
7 lines
245 B
Plaintext
7 lines
245 B
Plaintext
/datum/unit_test/keybinding_init/Run()
|
|
for(var/i in subtypesof(/datum/keybinding))
|
|
var/datum/keybinding/KB = i
|
|
if(initial(KB.keybind_signal) || !initial(KB.name))
|
|
continue
|
|
TEST_FAIL("[KB.name] does not have a keybind signal defined.")
|