Flowdock
class
Importance_1
v2.2.1 - Show latest stable - 1 note - Superclass: Object

No documentation

This class has no description. You can help the Ruby on Rails community by adding new notes.

Show files where this class is defined (7 files)
Register or log in to add new notes.
February 13, 2009
3 thanks

New test syntax

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