tracks/test/models/notes_test.rb

15 lines
228 B
Ruby
Raw Normal View History

2014-05-16 18:03:13 -04:00
require '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