mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-21 21:40:48 +02:00
14 lines
228 B
Ruby
14 lines
228 B
Ruby
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
|