one last case just in case

This commit is contained in:
Cal 2026-02-15 16:47:45 -07:00
parent d05fa6aeec
commit 4690dfaf20

View file

@ -419,6 +419,10 @@ class TestObjectManager(BaseEvenniaTest):
copied2.key = "CopyMe01"
copied3 = self.obj1.copy()
self.assertEqual(copied3.key, "CopyMe02")
# and that nothing breaks if something in the room doesn't share the prefix
copied3.key = "NotACopy"
copied4 = self.obj1.copy()
self.assertEqual(copied4.key, "CopyMe02")
def test_copy_object_no_location(self):