mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 12:41:09 +01:00
10 lines
393 B
Plaintext
10 lines
393 B
Plaintext
/// Conveys all log_mapping messages as unit test failures, as they all indicate mapping problems.
|
|
/datum/unit_test/maptest_log_mapping
|
|
test_flags = UNIT_TEST_MAP_TEST
|
|
// Happen before all other tests, to make sure we only capture normal mapping logs.
|
|
priority = TEST_PRE
|
|
|
|
/datum/unit_test/maptest_log_mapping/Run()
|
|
for(var/log_entry in GLOB.unit_test_mapping_logs)
|
|
TEST_FAIL(log_entry)
|