Files
Paradise/code/tests/test_sql.dm
warriorstar-orion bb60a027bf unit->game tests, /tg/ assertions and allocations (#27646)
* unit->game tests, /tg/ assertions and allocations

* whoopsies

* fix lint
2024-12-21 21:19:33 +00:00

6 lines
385 B
Plaintext

// Unit test to check SQL version has been updated properly.,
/datum/game_test/sql_version/Run()
// Check if the SQL version set in the code is equal to the CI DB config
TEST_ASSERT_EQUAL(GLOB.configuration.database.version, SQL_VERSION, "SQL version error. You may need to update the example config.")
TEST_ASSERT_EQUAL(SSdbcore.total_errors, 0, "SQL errors occurred on startup.")