tracks/test/models/notes_test.rb
2019-12-18 09:49:57 -06:00

15 lines
243 B
Ruby

# typed: false
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