Wrong test order

Unit tests must be located after live objects:

Incorrect:

[] > foo
  [] +> runs-something
  [] > bar

Correct:

[] > foo
  [] > bar
  [] +> runs-something

Published on Mon May 25 14:35:15 UTC 2026.