Since Mojo is a superset of Python, it will have support for doctests (https://realpython.com/python-doctest/) which combine documentation and testing. It will also have support for unit tests for TDD.
As for contracts, C++ currently has them. Maybe Mojo can take inspiration. Personally I think it's better to combine asserts and contracts into one feature instead of having to learn two things that achieve similar things.