class

Test::Unit::TestCase

rails latest stable - Superclass: Object

Class deprecated or moved

This class is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

No documentation available for this class.

Included modules

  • ActionMailer::TestHelper

Files

  • actionmailer/lib/action_mailer/test_helper.rb

1Note

New test syntax

Soleone ยท Feb 12, 20093 thanks

You can use either one and even mix in the same test case if you want: class Test < Test::Unit::TestCase # old way to define a test method (prefix with test_) def test_should_be_valid_without_content assert Comment.new.valid? end

# new way to define a test
test "should be valid without content" do
  assert Comment.new.valid?
end
end