質問編集履歴

1

文の修正

2021/07/02 15:41

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -1,16 +1,52 @@
1
- convert_lengthを使って、メートルをインチに変換しようとしたのですが
1
+ convert_lengthを使って、メートルをインチに変換しようと考え、libディレクトリにconvert_length.rbというファイルを作成し、
2
2
 
3
3
  ```Ruby
4
4
 
5
- convert_length(1, 'm', 'in')
5
+ def convert_length(length, unit_from, unit_to)
6
+
7
+ 39.37
8
+
9
+ end
6
10
 
7
11
  ```
8
12
 
9
- ↑を実行すると、エラーになってまいます
13
+ このようなコード書きま
10
14
 
11
15
 
12
16
 
17
+
18
+
19
+
20
+
21
+ 次に、testディレクトリにconvert_length_test.rbというファイルを作り、そこに
22
+
23
+ ```Ruby
24
+
25
+ require 'minitest/autorun'
26
+
27
+ require '../lib/convert_length'
28
+
29
+
30
+
31
+ class ConvertLengthTest < Minitest::Test
32
+
33
+ def test_convert_length
34
+
35
+ assert_equal 39.37, convert_length(1, 'm', 'in')
36
+
37
+ end
38
+
39
+ end
40
+
41
+ ```
42
+
43
+ ↑このようなコードを書きました。
44
+
45
+ これを実行すると、エラーになってしまいます。
46
+
47
+
48
+
13
- エラー内容は、undefind method 'convert_length' for main:Object (NoMethodError)と表示されます。
49
+ エラー内容は、'require': cannot load such file -- ../lib/convert/length(LoadError) と表示されます。
14
50
 
15
51
 
16
52