#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 WikiPagesControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get wiki_pages_index_url
assert_response :success
end
test "should get show" do
get wiki_pages_show_url
assert_response :success
end
test "should get create" do
get wiki_pages_create_url
assert_response :success
end
test "should get update" do
get wiki_pages_update_url
assert_response :success
end
test "should get destroy" do
get wiki_pages_destroy_url
assert_response :success
end
end