質問編集履歴

2

Githubページ追加

2020/05/24 15:59

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -3,6 +3,12 @@
3
3
  ログイン後に表示される投稿ページ(views/posts/show.html.erb)に対して以下のテストを行うとエラーになり、それを解消したいです。
4
4
 
5
5
  ログイン状態には、post_controller.rbでuserにsessionを付与して管理しています。
6
+
7
+
8
+
9
+ [Githubページ](https://github.com/mkakiz/tadakashi_app.git)
10
+
11
+
6
12
 
7
13
 
8
14
 

1

url修正

2020/05/24 15:59

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -22,7 +22,7 @@
22
22
 
23
23
  }}
24
24
 
25
- get "/posts/:id"
25
+ get "/posts/index"
26
26
 
27
27
  assert_response :success
28
28
 
@@ -32,7 +32,7 @@
32
32
 
33
33
  ```rails
34
34
 
35
- get "posts/:id", to: "posts#show", as: "post"
35
+ get "posts/index", to: "posts#index"
36
36
 
37
37
  ```
38
38