Wrong test order

Unit tests must be located after live objects:

Incorrect:

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

Correct:

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

Published on Tue Mar 31 07:20:33 UTC 2026.