#7 コントローラ等追加

This commit is contained in:
2025-05-18 02:22:37 +09:00
parent 7bd70c7d01
commit 3b172e44d8
23 changed files with 516 additions and 17 deletions
@@ -0,0 +1,28 @@
require "test_helper"
class UserPostViewsControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get user_post_views_index_url
assert_response :success
end
test "should get show" do
get user_post_views_show_url
assert_response :success
end
test "should get create" do
get user_post_views_create_url
assert_response :success
end
test "should get update" do
get user_post_views_update_url
assert_response :success
end
test "should get destroy" do
get user_post_views_destroy_url
assert_response :success
end
end