tracks/test/models/notes_test.rb
2013-05-11 23:13:16 +02:00

14 lines
275 B
Ruby

require File.expand_path(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