From 96813a5e508a54257ef03be613a704f1f71af53d Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 21 Oct 2023 00:25:50 -0400 Subject: Added quotes database --- test/controllers/quotes_controller_test.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/controllers/quotes_controller_test.rb (limited to 'test/controllers') diff --git a/test/controllers/quotes_controller_test.rb b/test/controllers/quotes_controller_test.rb new file mode 100644 index 0000000..a085d40 --- /dev/null +++ b/test/controllers/quotes_controller_test.rb @@ -0,0 +1,18 @@ +require "test_helper" + +class QuotesControllerTest < ActionDispatch::IntegrationTest + test "should get index" do + get quotes_index_url + assert_response :success + end + + test "should get show" do + get quotes_show_url + assert_response :success + end + + test "should get new" do + get quotes_new_url + assert_response :success + end +end -- cgit 1.4.1