diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/controllers/notes_controller_test.rb | 7 | ||||
| -rw-r--r-- | test/fixtures/notes.yml | 9 | ||||
| -rw-r--r-- | test/models/note_test.rb | 7 | 
3 files changed, 23 insertions, 0 deletions
| diff --git a/test/controllers/notes_controller_test.rb b/test/controllers/notes_controller_test.rb new file mode 100644 index 0000000..2a3800c --- /dev/null +++ b/test/controllers/notes_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class NotesControllerTest < ActionController::TestCase +  # test "the truth" do +  #   assert true +  # end +end diff --git a/test/fixtures/notes.yml b/test/fixtures/notes.yml new file mode 100644 index 0000000..e192dee --- /dev/null +++ b/test/fixtures/notes.yml @@ -0,0 +1,9 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: +  title: MyString +  body: MyText + +two: +  title: MyString +  body: MyText diff --git a/test/models/note_test.rb b/test/models/note_test.rb new file mode 100644 index 0000000..7bbab53 --- /dev/null +++ b/test/models/note_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class NoteTest < ActiveSupport::TestCase +  # test "the truth" do +  #   assert true +  # end +end | 
