From 7116826b854188604e21e2a613ac6672b6fd81f3 Mon Sep 17 00:00:00 2001 From: Marius Peter Date: Mon, 8 Sep 2025 21:21:56 +0200 Subject: Create Target and nutrient target table on dashboard. --- test/controllers/targets_controller_test.rb | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 test/controllers/targets_controller_test.rb (limited to 'test/controllers') diff --git a/test/controllers/targets_controller_test.rb b/test/controllers/targets_controller_test.rb new file mode 100644 index 0000000..911e3ae --- /dev/null +++ b/test/controllers/targets_controller_test.rb @@ -0,0 +1,33 @@ +require "test_helper" + +class TargetsControllerTest < ActionDispatch::IntegrationTest + test "should get index" do + get targets_index_url + assert_response :success + end + + test "should get new" do + get targets_new_url + assert_response :success + end + + test "should get create" do + get targets_create_url + assert_response :success + end + + test "should get edit" do + get targets_edit_url + assert_response :success + end + + test "should get update" do + get targets_update_url + assert_response :success + end + + test "should get show" do + get targets_show_url + assert_response :success + end +end -- cgit v1.2.3