nose (Python)
  from nose.tools import *
  
  def test_add():
      assert_equals(5, 2 + 3)
  % nosetests test_add.py