質問編集履歴
1
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,12 +8,18 @@
|
|
8
8
|
|
9
9
|
第3章 3.3.1「最初のテスト」にて
|
10
10
|
|
11
|
+
デフォルトでtest/controllers/static_pages_controller_test.rbファイルに置いてあるテストを
|
12
|
+
|
13
|
+
rails testコマンドで実行し、検証するという内容ですが、
|
14
|
+
|
11
|
-
|
15
|
+
コマンドを実行したところ以下のようなエラーが発生いたしました。
|
12
16
|
|
13
17
|
|
14
18
|
|
15
19
|
### 発生している問題・エラーメッセージ
|
16
20
|
|
21
|
+
```ここに言語名を入力
|
22
|
+
|
17
23
|
/Users/...../.rbenv/versions/3.0.0/lib/ruby/gems/3.0.0/gems/bootsnap-1.8.1/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:34:in `require': cannot load such file -- rexml/document (LoadError)
|
18
24
|
|
19
25
|
from /Users/...../.rbenv/versions/3.0.0/lib/ruby/gems/3.0.0/gems/activesupport-6.1.4.1/lib/active_support/dependencies.rb:332:in `block in require'
|
@@ -104,6 +110,46 @@
|
|
104
110
|
|
105
111
|
from -e:1:in `<main>'
|
106
112
|
|
113
|
+
```
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
###デフォルトファイル(test/controllers/static_pages_controller_test.rb)の中身
|
118
|
+
|
119
|
+
```ここに言語名を入力
|
120
|
+
|
121
|
+
require "test_helper"
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
class StaticPagesControllerTest < ActionDispatch::IntegrationTest
|
126
|
+
|
127
|
+
test "should get home" do
|
128
|
+
|
129
|
+
get static_pages_home_url
|
130
|
+
|
131
|
+
assert_response :success
|
132
|
+
|
133
|
+
end
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
test "should get help" do
|
138
|
+
|
139
|
+
get static_pages_help_url
|
140
|
+
|
141
|
+
assert_response :success
|
142
|
+
|
143
|
+
end
|
144
|
+
|
145
|
+
end
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
```
|
150
|
+
|
151
|
+
|
152
|
+
|
107
153
|
|
108
154
|
|
109
155
|
### 現在のgemfile
|
@@ -234,12 +280,20 @@
|
|
234
280
|
|
235
281
|
調べたところ、springを停止すればエラーが止まったとの記事を発見。
|
236
282
|
|
283
|
+
```ここに言語名を入力
|
284
|
+
|
237
285
|
% sudo gem install spring
|
238
286
|
|
287
|
+
```
|
288
|
+
|
239
289
|
↓
|
240
290
|
|
291
|
+
```ここに言語名を入力
|
292
|
+
|
241
293
|
% spring stop
|
242
294
|
|
295
|
+
```
|
296
|
+
|
243
297
|
でspringを停止。
|
244
298
|
|
245
299
|
|
@@ -258,4 +312,8 @@
|
|
258
312
|
|
259
313
|
M1 macbook使用
|
260
314
|
|
315
|
+
```ここに言語名を入力
|
316
|
+
|
261
|
-
|
317
|
+
% bundle lock --add-plataform x86_64-linux
|
318
|
+
|
319
|
+
```を実行しherokuに対応
|