mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-18 00:00:12 +01:00
move tests to new directory
This commit is contained in:
parent
65859807ea
commit
0bc9b0397a
42 changed files with 23 additions and 32 deletions
14
test/models/notes_test.rb
Normal file
14
test/models/notes_test.rb
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue