質問編集履歴
1
FactoryBot追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -298,6 +298,50 @@
|
|
298
298
|
|
299
299
|
|
300
300
|
|
301
|
+
### Factory.Botの内容
|
302
|
+
|
303
|
+
```ここに言語を入力
|
304
|
+
|
305
|
+
FactoryBot.define do
|
306
|
+
|
307
|
+
factory :micropost do
|
308
|
+
|
309
|
+
content {'テストを書く'}
|
310
|
+
|
311
|
+
# image {'test.png'}
|
312
|
+
|
313
|
+
user
|
314
|
+
|
315
|
+
end
|
316
|
+
|
317
|
+
end
|
318
|
+
|
319
|
+
```
|
320
|
+
|
321
|
+
```ここに言語を入力
|
322
|
+
|
323
|
+
FactoryBot.define do
|
324
|
+
|
325
|
+
factory :user do
|
326
|
+
|
327
|
+
name {'テストユーザー'}
|
328
|
+
|
329
|
+
email {'test@example.com'}
|
330
|
+
|
331
|
+
image {'profile.png'}
|
332
|
+
|
333
|
+
password {'password'}
|
334
|
+
|
335
|
+
profile {'テストです'}
|
336
|
+
|
337
|
+
end
|
338
|
+
|
339
|
+
end
|
340
|
+
|
341
|
+
```
|
342
|
+
|
343
|
+
|
344
|
+
|
301
345
|
### 試してみたこと
|
302
346
|
|
303
347
|
・expected "Microposts" to include "最初の投稿" を記述してみる
|