From ad80c40944743515a45d70014e8d5ffb88cd74fc Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sun, 25 Jun 2017 00:00:28 -0400 Subject: Started designing index page --- test/controllers/entries_controller_test.rb | 9 +++++++++ test/controllers/records_controller_test.rb | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 test/controllers/entries_controller_test.rb create mode 100644 test/controllers/records_controller_test.rb (limited to 'test/controllers') diff --git a/test/controllers/entries_controller_test.rb b/test/controllers/entries_controller_test.rb new file mode 100644 index 0000000..6e2db59 --- /dev/null +++ b/test/controllers/entries_controller_test.rb @@ -0,0 +1,9 @@ +require 'test_helper' + +class EntriesControllerTest < ActionDispatch::IntegrationTest + test "should get show" do + get entries_show_url + assert_response :success + end + +end diff --git a/test/controllers/records_controller_test.rb b/test/controllers/records_controller_test.rb new file mode 100644 index 0000000..6eeb2c3 --- /dev/null +++ b/test/controllers/records_controller_test.rb @@ -0,0 +1,9 @@ +require 'test_helper' + +class RecordsControllerTest < ActionDispatch::IntegrationTest + test "should get index" do + get records_index_url + assert_response :success + end + +end -- cgit 1.4.1