質問編集履歴
1
FactoryBot追記しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -148,6 +148,28 @@
|
|
148
148
|
end
|
149
149
|
```
|
150
150
|
|
151
|
+
### Factory.Botの内容
|
152
|
+
```ここに言語を入力
|
153
|
+
FactoryBot.define do
|
154
|
+
factory :micropost do
|
155
|
+
content {'テストを書く'}
|
156
|
+
# image {'test.png'}
|
157
|
+
user
|
158
|
+
end
|
159
|
+
end
|
160
|
+
```
|
161
|
+
```ここに言語を入力
|
162
|
+
FactoryBot.define do
|
163
|
+
factory :user do
|
164
|
+
name {'テストユーザー'}
|
165
|
+
email {'test@example.com'}
|
166
|
+
image {'profile.png'}
|
167
|
+
password {'password'}
|
168
|
+
profile {'テストです'}
|
169
|
+
end
|
170
|
+
end
|
171
|
+
```
|
172
|
+
|
151
173
|
### 試してみたこと
|
152
174
|
・expected "Microposts" to include "最初の投稿" を記述してみる
|
153
175
|
・pageをmicropostsに変えてみる
|