Try this:

require 'test/unit'

class UnitTests < Test::Unit::TestCase
  def test_true
    assert(true)
  end
end

Ryan