質問編集履歴

2

ディレクトリ構成の追加

2020/07/29 00:35

投稿

a0002
a0002

スコア7

test CHANGED
File without changes
test CHANGED
@@ -130,6 +130,136 @@
130
130
 
131
131
 
132
132
 
133
+ ### ディレクトリの構成
134
+
135
+ ```
136
+
137
+ ├─trouble8
138
+
139
+ │ │ admin.py
140
+
141
+ │ │ apps.py
142
+
143
+ │ │ calc.py
144
+
145
+ │ │ find.py
146
+
147
+ │ │ forms.py
148
+
149
+ │ │ json.py
150
+
151
+ │ │ login.py
152
+
153
+ │ │ models.py
154
+
155
+ │ │ urls.py
156
+
157
+ │ │ views.py
158
+
159
+ │ │ __init__.py
160
+
161
+ │ │
162
+
163
+ │ ├─migrations
164
+
165
+ │ │ │ 0001_initial.py
166
+
167
+ │ │ │ __init__.py
168
+
169
+ │ │ │
170
+
171
+ │ │ └─__pycache__
172
+
173
+ │ │ 0001_initial.cpython-37.pyc
174
+
175
+ │ │ __init__.cpython-37.pyc
176
+
177
+ │ │
178
+
179
+ │ ├─templates
180
+
181
+ │ │ │ 403.html
182
+
183
+ │ │ │ 404.html
184
+
185
+ │ │ │ 500.html
186
+
187
+ │ │ │ aaa.html
188
+
189
+ │ │ │ base.html
190
+
191
+ │ │ │ delete.html
192
+
193
+ │ │ │ edit.html
194
+
195
+ │ │ │ find.html
196
+
197
+ │ │ │ index.html
198
+
199
+ │ │ │ json.html
200
+
201
+ │ │ │ read.html
202
+
203
+ │ │ │ result.html
204
+
205
+ │ │ │ signup.html
206
+
207
+ │ │ │
208
+
209
+ │ │ └─registration
210
+
211
+ │ │ login.html
212
+
213
+ │ │ logout.html
214
+
215
+ │ │
216
+
217
+ │ ├─tests
218
+
219
+ │ │ │ test_index_html.py
220
+
221
+ │ │ │ __init__.py
222
+
223
+ │ │ │
224
+
225
+ │ │ ├─.pytest_cache
226
+
227
+ │ │ │
228
+
229
+ │ │ └─__pycache__
230
+
231
+ │ │
232
+
233
+ │ └─__pycache__
234
+
235
+
236
+
237
+ ├─trouble8_app
238
+
239
+ │ │ asgi.py
240
+
241
+ │ │ settings.py
242
+
243
+ │ │ urls.py
244
+
245
+ │ │ wsgi.py
246
+
247
+ │ │ __init__.py
248
+
249
+ │ │
250
+
251
+ │ └─__pycache__
252
+
253
+
254
+
255
+ └─__pycache__
256
+
257
+ test_1-2-2.cpython-37-pytest-5.4.3.pyc
258
+
259
+ ```
260
+
261
+
262
+
133
263
  ### 該当のソースコード
134
264
 
135
265
 

1

コードの改善

2020/07/29 00:35

投稿

a0002
a0002

スコア7

test CHANGED
File without changes
test CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
  ### 発生している問題・エラーメッセージ
20
20
 
21
-
21
+ ```ここに言語を入力
22
22
 
23
23
  (trouble1) C:\Users\gdans\Desktop\trouble8_apptest\trouble8\tests>pytest test_index_html.py -v
24
24
 
@@ -126,7 +126,7 @@
126
126
 
127
127
  ============================================================================== 1 failed in 0.89s ===============================================================================
128
128
 
129
-
129
+ ```
130
130
 
131
131
 
132
132
 
@@ -136,6 +136,8 @@
136
136
 
137
137
  ◆①テスト対象コード:view.py
138
138
 
139
+ ```
140
+
139
141
  from django.shortcuts import render
140
142
 
141
143
  from .models import UnitInfo
@@ -156,10 +158,12 @@
156
158
 
157
159
  return render(request, 'index.html', params)
158
160
 
159
-
161
+ ```
160
162
 
161
163
  ◆②テスト対象コード:index.html
162
164
 
165
+ ```
166
+
163
167
  {% extends "base.html" %}
164
168
 
165
169
  {% block content %}
@@ -200,10 +204,12 @@
200
204
 
201
205
  {% endblock content %}
202
206
 
203
-
207
+ ```
204
208
 
205
209
  ◆テスト対象コード:urls.py
206
210
 
211
+ ```
212
+
207
213
  from django.urls import path
208
214
 
209
215
  from . import views
@@ -220,12 +226,14 @@
220
226
 
221
227
  ]
222
228
 
223
-
229
+ ```
224
230
 
225
231
 
226
232
 
227
233
  ◆③テストコード:test_index_html.py
228
234
 
235
+ ```
236
+
229
237
  import os
230
238
 
231
239
  os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'trouble8_app.settings')
@@ -264,7 +272,7 @@
264
272
 
265
273
  assert response.content.decode() == expected_html
266
274
 
267
-
275
+ ```
268
276
 
269
277
  ### 試したこと
270
278
 
@@ -274,7 +282,7 @@
274
282
 
275
283
  settingsファイルに以下を◆#追記◆したがエラー内容は変わらなかった
276
284
 
277
-
285
+ ```
278
286
 
279
287
  TEMPLATES = [
280
288
 
@@ -306,7 +314,7 @@
306
314
 
307
315
  ]
308
316
 
309
-
317
+ ```
310
318
 
311
319
  ### 補足情報(FW/ツールのバージョンなど)
312
320