tracks/test/unit/notes_test.rb
Reinier Balt bde079a92b get test running again for zentest > 4.0.0
also fix other bugs in the tests
2009-08-05 20:35:31 +02:00

14 lines
257 B
Ruby

require File.dirname(__FILE__) + '/../test_helper'
class NotesTest < ActiveSupport::TestCase
fixtures :notes
def setup
@notes = Note.find(1)
end
# Replace this with your real tests.
def test_truth
assert_kind_of Note, @notes
end
end