Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit a9b0188

Browse files
author
Redmoogle
authored
Port unit tests (#11016)
1 parent 2db4818 commit a9b0188

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

code/__HELPERS/_logging.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define testing(msg)
3030
#endif
3131

32-
#ifdef UNIT_TESTS
32+
#if defined(UNIT_TESTS) || defined(SPACEMAN_DMM)
3333
/proc/log_test(text)
3434
WRITE_LOG(GLOB.test_log, text)
3535
SEND_TEXT(world.log, text)

code/modules/unit_tests/_unit_tests.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//include unit test files in this module in this ifdef
22
//Keep this sorted alphabetically
33

4-
#ifdef UNIT_TESTS
4+
#if defined(UNIT_TESTS) || defined(SPACEMAN_DMM)
55
#include "anchored_mobs.dm"
66
#include "component_tests.dm"
77
#include "reagent_id_typos.dm"

0 commit comments

Comments
 (0)