質問編集履歴

1

fixtureファイルのコードの誤字脱字の可能性を指摘されたので加筆しました

2019/12/31 13:40

投稿

akairen
akairen

スコア18

test CHANGED
File without changes
test CHANGED
@@ -1,5 +1,3 @@
1
- Rails チュートリアルをしているRails初学者です
2
-
3
1
  Rails チュートリアル13章の13.2.3のテストを実行した結果以下のようなエラーが出てしまい解消できずにいます
4
2
 
5
3
 
@@ -161,3 +159,77 @@
161
159
  これはそもそも別の部分に問題があるのでしょうか?
162
160
 
163
161
  お分かりになる方がいらっしゃいましたらご教授願います
162
+
163
+
164
+
165
+ ### 追記
166
+
167
+ ```
168
+
169
+
170
+
171
+
172
+
173
+ ```
174
+
175
+ **microposts.yml**
176
+
177
+
178
+
179
+
180
+
181
+ orange:
182
+
183
+ content: "I just ate an orange!"
184
+
185
+ created_at: <%= 10.minutes.ago %>
186
+
187
+ user: michael
188
+
189
+
190
+
191
+ tau_manifesto:
192
+
193
+ content: "Check out the @tauday site by @mhartl: http://tauday.com"
194
+
195
+ created_at: <%= 3.years.ago %>
196
+
197
+ user: michael
198
+
199
+
200
+
201
+ cat_video:
202
+
203
+ content: "Sad cats are sad: http://youtu.be/PKffm2uI4dk"
204
+
205
+ created_at: <%= 2.hours.ago %>
206
+
207
+ user: michael
208
+
209
+
210
+
211
+ most_recent:
212
+
213
+ content: "Writing a short test"
214
+
215
+ created_at: <%= Time.zone.now %>
216
+
217
+ user: michael
218
+
219
+
220
+
221
+ <% 30.times do |n| %>
222
+
223
+ micropost_<%= n %>:
224
+
225
+ content: <%= Faker::Lorem.sentence(5) %>
226
+
227
+ created_at: <%= 42.days.ago %>
228
+
229
+ user: michael
230
+
231
+ <% end %>
232
+
233
+
234
+
235
+ ```