From 0d50b1f18993827cb6862efeedea528b64fad164 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 21 Oct 2023 13:24:24 -0400 Subject: Added quote moderation panel --- test/controllers/admin/quotes_controller_test.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/controllers/admin/quotes_controller_test.rb (limited to 'test/controllers') diff --git a/test/controllers/admin/quotes_controller_test.rb b/test/controllers/admin/quotes_controller_test.rb new file mode 100644 index 0000000..4f5939b --- /dev/null +++ b/test/controllers/admin/quotes_controller_test.rb @@ -0,0 +1,13 @@ +require "test_helper" + +class Admin::QuotesControllerTest < ActionDispatch::IntegrationTest + test "should get index" do + get admin_quotes_index_url + assert_response :success + end + + test "should get pending" do + get admin_quotes_pending_url + assert_response :success + end +end -- cgit 1.4.1