mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-09 15:15:34 +01:00
4839b10d8d
Co-authored-by: SmArtKar <44720187+SmArtKar@users.noreply.github.com>
7 lines
367 B
Plaintext
7 lines
367 B
Plaintext
/// Ensures the captain's spare id keeps the name "captain's spare id", and doesn't get changed by id label
|
|
/datum/unit_test/spare_id_name
|
|
|
|
/datum/unit_test/spare_id_name/Run()
|
|
var/obj/item/card/id/advanced/gold/captains_spare/card = EASY_ALLOCATE()
|
|
TEST_ASSERT_EQUAL(card.name, initial(card.name), "Captain's spare ID card should not change its name by default.")
|