steep 0.40.0 → 0.41.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/bin/output_rebaseline.rb +15 -30
  4. data/bin/output_test.rb +17 -57
  5. data/lib/steep.rb +4 -0
  6. data/lib/steep/cli.rb +9 -3
  7. data/lib/steep/drivers/check.rb +106 -14
  8. data/lib/steep/drivers/diagnostic_printer.rb +11 -11
  9. data/lib/steep/expectations.rb +159 -0
  10. data/lib/steep/project.rb +6 -0
  11. data/lib/steep/version.rb +1 -1
  12. data/smoke/alias/test_expectations.yml +96 -0
  13. data/smoke/and/test_expectations.yml +31 -0
  14. data/smoke/array/test_expectations.yml +103 -0
  15. data/smoke/block/test_expectations.yml +125 -0
  16. data/smoke/case/test_expectations.yml +47 -0
  17. data/smoke/class/test_expectations.yml +120 -0
  18. data/smoke/const/test_expectations.yml +139 -0
  19. data/smoke/diagnostics-rbs-duplicated/test_expectations.yml +13 -0
  20. data/smoke/diagnostics-rbs/test_expectations.yml +229 -0
  21. data/smoke/diagnostics/test_expectations.yml +477 -0
  22. data/smoke/dstr/test_expectations.yml +13 -0
  23. data/smoke/ensure/test_expectations.yml +62 -0
  24. data/smoke/enumerator/test_expectations.yml +135 -0
  25. data/smoke/extension/test_expectations.yml +61 -0
  26. data/smoke/hash/test_expectations.yml +81 -0
  27. data/smoke/hello/test_expectations.yml +25 -0
  28. data/smoke/if/test_expectations.yml +34 -0
  29. data/smoke/implements/test_expectations.yml +23 -0
  30. data/smoke/initialize/test_expectations.yml +1 -0
  31. data/smoke/integer/test_expectations.yml +101 -0
  32. data/smoke/interface/test_expectations.yml +23 -0
  33. data/smoke/kwbegin/test_expectations.yml +17 -0
  34. data/smoke/lambda/test_expectations.yml +39 -0
  35. data/smoke/literal/test_expectations.yml +106 -0
  36. data/smoke/map/test_expectations.yml +1 -0
  37. data/smoke/method/test_expectations.yml +90 -0
  38. data/smoke/module/test_expectations.yml +75 -0
  39. data/smoke/regexp/test_expectations.yml +615 -0
  40. data/smoke/regression/test_expectations.yml +43 -0
  41. data/smoke/rescue/test_expectations.yml +79 -0
  42. data/smoke/self/test_expectations.yml +23 -0
  43. data/smoke/skip/test_expectations.yml +23 -0
  44. data/smoke/stdout/test_expectations.yml +1 -0
  45. data/smoke/super/test_expectations.yml +79 -0
  46. data/smoke/toplevel/test_expectations.yml +15 -0
  47. data/smoke/tsort/test_expectations.yml +43 -0
  48. data/smoke/type_case/test_expectations.yml +48 -0
  49. data/smoke/yield/test_expectations.yml +68 -0
  50. metadata +41 -44
  51. data/smoke/alias/test.yaml +0 -73
  52. data/smoke/and/test.yaml +0 -24
  53. data/smoke/array/test.yaml +0 -80
  54. data/smoke/block/test.yaml +0 -96
  55. data/smoke/broken/Steepfile +0 -5
  56. data/smoke/broken/broken.rb +0 -0
  57. data/smoke/broken/broken.rbs +0 -0
  58. data/smoke/broken/test.yaml +0 -6
  59. data/smoke/case/test.yaml +0 -36
  60. data/smoke/class/test.yaml +0 -89
  61. data/smoke/const/test.yaml +0 -96
  62. data/smoke/diagnostics-rbs-duplicated/test.yaml +0 -10
  63. data/smoke/diagnostics-rbs/test.yaml +0 -142
  64. data/smoke/diagnostics/test.yaml +0 -333
  65. data/smoke/dstr/test.yaml +0 -10
  66. data/smoke/ensure/test.yaml +0 -47
  67. data/smoke/enumerator/test.yaml +0 -100
  68. data/smoke/extension/test.yaml +0 -50
  69. data/smoke/hash/test.yaml +0 -62
  70. data/smoke/hello/test.yaml +0 -18
  71. data/smoke/if/test.yaml +0 -27
  72. data/smoke/implements/test.yaml +0 -16
  73. data/smoke/initialize/test.yaml +0 -4
  74. data/smoke/integer/test.yaml +0 -66
  75. data/smoke/interface/test.yaml +0 -16
  76. data/smoke/kwbegin/test.yaml +0 -14
  77. data/smoke/lambda/test.yaml +0 -28
  78. data/smoke/literal/test.yaml +0 -79
  79. data/smoke/map/test.yaml +0 -4
  80. data/smoke/method/test.yaml +0 -71
  81. data/smoke/module/test.yaml +0 -51
  82. data/smoke/regexp/test.yaml +0 -372
  83. data/smoke/regression/test.yaml +0 -38
  84. data/smoke/rescue/test.yaml +0 -60
  85. data/smoke/self/test.yaml +0 -16
  86. data/smoke/skip/test.yaml +0 -16
  87. data/smoke/stdout/test.yaml +0 -4
  88. data/smoke/super/test.yaml +0 -52
  89. data/smoke/toplevel/test.yaml +0 -12
  90. data/smoke/tsort/test.yaml +0 -32
  91. data/smoke/type_case/test.yaml +0 -33
  92. data/smoke/yield/test.yaml +0 -49
@@ -0,0 +1,43 @@
1
+ ---
2
+ - file: set_divide.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 2
7
+ character: 2
8
+ end:
9
+ line: 2
10
+ character: 10
11
+ severity: ERROR
12
+ message: Type `::Set[::String]` does not have method `ffffffff`
13
+ code: Ruby::NoMethod
14
+ - range:
15
+ start:
16
+ line: 5
17
+ character: 4
18
+ end:
19
+ line: 5
20
+ character: 9
21
+ severity: ERROR
22
+ message: Type `::String` does not have method `ggggg`
23
+ code: Ruby::NoMethod
24
+ - range:
25
+ start:
26
+ line: 7
27
+ character: 4
28
+ end:
29
+ line: 7
30
+ character: 9
31
+ severity: ERROR
32
+ message: Type `::String` does not have method `ggggg`
33
+ code: Ruby::NoMethod
34
+ - range:
35
+ start:
36
+ line: 11
37
+ character: 4
38
+ end:
39
+ line: 11
40
+ character: 9
41
+ severity: ERROR
42
+ message: Type `::String` does not have method `ggggg`
43
+ code: Ruby::NoMethod
@@ -0,0 +1,79 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 3
7
+ character: 0
8
+ end:
9
+ line: 7
10
+ character: 7
11
+ severity: ERROR
12
+ message: |-
13
+ Cannot assign a value of type `(::String | ::Integer)` to a variable of type `::Integer`
14
+ (::String | ::Integer) <: ::Integer
15
+ ::String <: ::Integer
16
+ ::Object <: ::Integer
17
+ ::BasicObject <: ::Integer
18
+ code: Ruby::IncompatibleAssignment
19
+ - range:
20
+ start:
21
+ line: 11
22
+ character: 0
23
+ end:
24
+ line: 11
25
+ character: 18
26
+ severity: ERROR
27
+ message: |-
28
+ Cannot assign a value of type `(::String | ::Integer)` to a variable of type `::Integer`
29
+ (::String | ::Integer) <: ::Integer
30
+ ::String <: ::Integer
31
+ ::Object <: ::Integer
32
+ ::BasicObject <: ::Integer
33
+ code: Ruby::IncompatibleAssignment
34
+ - range:
35
+ start:
36
+ line: 15
37
+ character: 0
38
+ end:
39
+ line: 21
40
+ character: 7
41
+ severity: ERROR
42
+ message: |-
43
+ Cannot assign a value of type `(::String | ::Symbol | ::Integer)` to a variable of type `::Integer`
44
+ (::String | ::Symbol | ::Integer) <: ::Integer
45
+ ::String <: ::Integer
46
+ ::Object <: ::Integer
47
+ ::BasicObject <: ::Integer
48
+ code: Ruby::IncompatibleAssignment
49
+ - range:
50
+ start:
51
+ line: 25
52
+ character: 0
53
+ end:
54
+ line: 33
55
+ character: 7
56
+ severity: ERROR
57
+ message: |-
58
+ Cannot assign a value of type `(::Array[::Integer] | ::Symbol | ::Integer)` to a variable of type `::Integer`
59
+ (::Array[::Integer] | ::Symbol | ::Integer) <: ::Integer
60
+ ::Array[::Integer] <: ::Integer
61
+ ::Object <: ::Integer
62
+ ::BasicObject <: ::Integer
63
+ code: Ruby::IncompatibleAssignment
64
+ - range:
65
+ start:
66
+ line: 37
67
+ character: 0
68
+ end:
69
+ line: 41
70
+ character: 3
71
+ severity: ERROR
72
+ message: |-
73
+ Cannot allow method body have type `(::Integer | ::String)` because declared as type `::String`
74
+ (::Integer | ::String) <: ::String
75
+ ::Integer <: ::String
76
+ ::Numeric <: ::String
77
+ ::Object <: ::String
78
+ ::BasicObject <: ::String
79
+ code: Ruby::MethodBodyTypeMismatch
@@ -0,0 +1,23 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 16
7
+ character: 2
8
+ end:
9
+ line: 16
10
+ character: 5
11
+ severity: ERROR
12
+ message: Type `::Object` does not have method `baz`
13
+ code: Ruby::NoMethod
14
+ - range:
15
+ start:
16
+ line: 19
17
+ character: 4
18
+ end:
19
+ line: 19
20
+ character: 7
21
+ severity: ERROR
22
+ message: Type `::Object` does not have method `baz`
23
+ code: Ruby::NoMethod
@@ -0,0 +1,23 @@
1
+ ---
2
+ - file: skip.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 8
7
+ character: 7
8
+ end:
9
+ line: 8
10
+ character: 21
11
+ severity: ERROR
12
+ message: Type `::Object` does not have method `no_such_method`
13
+ code: Ruby::NoMethod
14
+ - range:
15
+ start:
16
+ line: 12
17
+ character: 7
18
+ end:
19
+ line: 12
20
+ character: 21
21
+ severity: ERROR
22
+ message: Type `::Object` does not have method `no_such_method`
23
+ code: Ruby::NoMethod
@@ -0,0 +1 @@
1
+ --- []
@@ -0,0 +1,79 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 6
7
+ character: 4
8
+ end:
9
+ line: 6
10
+ character: 16
11
+ severity: ERROR
12
+ message: |-
13
+ Cannot assign a value of type `::Object` to a variable of type `::Integer`
14
+ ::Object <: ::Integer
15
+ ::BasicObject <: ::Integer
16
+ code: Ruby::IncompatibleAssignment
17
+ - range:
18
+ start:
19
+ line: 7
20
+ character: 4
21
+ end:
22
+ line: 7
23
+ character: 13
24
+ severity: ERROR
25
+ message: |-
26
+ Cannot assign a value of type `::Object` to a variable of type `::Integer`
27
+ ::Object <: ::Integer
28
+ ::BasicObject <: ::Integer
29
+ code: Ruby::IncompatibleAssignment
30
+ - range:
31
+ start:
32
+ line: 19
33
+ character: 4
34
+ end:
35
+ line: 19
36
+ character: 11
37
+ severity: ERROR
38
+ message: Cannot detect the type of the expression
39
+ code: Ruby::FallbackAny
40
+ - range:
41
+ start:
42
+ line: 20
43
+ character: 4
44
+ end:
45
+ line: 20
46
+ character: 9
47
+ severity: ERROR
48
+ message: Cannot detect the type of the expression
49
+ code: Ruby::FallbackAny
50
+ - range:
51
+ start:
52
+ line: 26
53
+ character: 4
54
+ end:
55
+ line: 26
56
+ character: 11
57
+ severity: ERROR
58
+ message: UnexpectedSuper
59
+ code: Ruby::UnexpectedSuper
60
+ - range:
61
+ start:
62
+ line: 28
63
+ character: 4
64
+ end:
65
+ line: 28
66
+ character: 9
67
+ severity: ERROR
68
+ message: Cannot detect the type of the expression
69
+ code: Ruby::FallbackAny
70
+ - range:
71
+ start:
72
+ line: 28
73
+ character: 4
74
+ end:
75
+ line: 28
76
+ character: 9
77
+ severity: ERROR
78
+ message: UnexpectedSuper
79
+ code: Ruby::UnexpectedSuper
@@ -0,0 +1,15 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 1
7
+ character: 0
8
+ end:
9
+ line: 3
10
+ character: 3
11
+ severity: ERROR
12
+ message: |-
13
+ Cannot allow method body have type `nil` because declared as type `::String`
14
+ nil <: ::String
15
+ code: Ruby::MethodBodyTypeMismatch
@@ -0,0 +1,43 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 7
7
+ character: 0
8
+ end:
9
+ line: 7
10
+ character: 38
11
+ severity: ERROR
12
+ message: |-
13
+ Cannot assign a value of type `^() -> ::Hash[::Integer, ::Array[::Integer]]` to a variable of type `^() { (::Integer) -> void } -> void`
14
+ ^() -> ::Hash[::Integer, ::Array[::Integer]] <: ^() { (::Integer) -> void } -> void
15
+ code: Ruby::IncompatibleAssignment
16
+ - range:
17
+ start:
18
+ line: 9
19
+ character: 0
20
+ end:
21
+ line: 9
22
+ character: 41
23
+ severity: ERROR
24
+ message: |-
25
+ Cannot assign a value of type `^(::Integer) -> ::Array[::Integer]` to a variable of type `^(::Integer) { (::Integer) -> void } -> void`
26
+ ^(::Integer) -> ::Array[::Integer] <: ^(::Integer) { (::Integer) -> void } -> void
27
+ code: Ruby::IncompatibleAssignment
28
+ - range:
29
+ start:
30
+ line: 12
31
+ character: 0
32
+ end:
33
+ line: 12
34
+ character: 39
35
+ severity: ERROR
36
+ message: |-
37
+ Cannot assign a value of type `::Array[::Integer]` to a variable of type `::Array[::String]`
38
+ ::Array[::Integer] <: ::Array[::String]
39
+ ::Integer <: ::String
40
+ ::Numeric <: ::String
41
+ ::Object <: ::String
42
+ ::BasicObject <: ::String
43
+ code: Ruby::IncompatibleAssignment
@@ -0,0 +1,48 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 7
7
+ character: 4
8
+ end:
9
+ line: 7
10
+ character: 10
11
+ severity: ERROR
12
+ message: Type `(::Integer | ::String)` does not have method `foobar`
13
+ code: Ruby::NoMethod
14
+ - range:
15
+ start:
16
+ line: 12
17
+ character: 4
18
+ end:
19
+ line: 12
20
+ character: 10
21
+ severity: ERROR
22
+ message: Type `(::Integer | ::String | ::Symbol)` does not have method `foobar`
23
+ code: Ruby::NoMethod
24
+ - range:
25
+ start:
26
+ line: 17
27
+ character: 4
28
+ end:
29
+ line: 17
30
+ character: 10
31
+ severity: ERROR
32
+ message: Type `1` does not have method `foobar`
33
+ code: Ruby::NoMethod
34
+ - range:
35
+ start:
36
+ line: 23
37
+ character: 2
38
+ end:
39
+ line: 23
40
+ character: 7
41
+ severity: ERROR
42
+ message: |-
43
+ Type annotation about `x` is incompatible since ::Integer <: ::String doesn't hold
44
+ ::Integer <: ::String
45
+ ::Numeric <: ::String
46
+ ::Object <: ::String
47
+ ::BasicObject <: ::String
48
+ code: Ruby::IncompatibleAnnotation
@@ -0,0 +1,68 @@
1
+ ---
2
+ - file: a.rb
3
+ diagnostics:
4
+ - range:
5
+ start:
6
+ line: 6
7
+ character: 4
8
+ end:
9
+ line: 6
10
+ character: 16
11
+ severity: ERROR
12
+ message: |-
13
+ Cannot assign a value of type `::Integer` to a variable of type `::String`
14
+ ::Integer <: ::String
15
+ ::Numeric <: ::String
16
+ ::Object <: ::String
17
+ ::BasicObject <: ::String
18
+ code: Ruby::IncompatibleAssignment
19
+ - range:
20
+ start:
21
+ line: 8
22
+ character: 10
23
+ end:
24
+ line: 8
25
+ character: 11
26
+ severity: ERROR
27
+ message: |-
28
+ Cannot assign a value of type `::String` to an expression of type `::Integer`
29
+ ::String <: ::Integer
30
+ ::Object <: ::Integer
31
+ ::BasicObject <: ::Integer
32
+ code: Ruby::IncompatibleAssignment
33
+ - range:
34
+ start:
35
+ line: 13
36
+ character: 4
37
+ end:
38
+ line: 13
39
+ character: 11
40
+ severity: ERROR
41
+ message: Cannot detect the type of the expression
42
+ code: Ruby::FallbackAny
43
+ - range:
44
+ start:
45
+ line: 13
46
+ character: 4
47
+ end:
48
+ line: 13
49
+ character: 11
50
+ severity: ERROR
51
+ message: No block given for `yield`
52
+ code: Ruby::UnexpectedYield
53
+ - file: b.rb
54
+ diagnostics:
55
+ - range:
56
+ start:
57
+ line: 4
58
+ character: 10
59
+ end:
60
+ line: 4
61
+ character: 12
62
+ severity: ERROR
63
+ message: |-
64
+ Cannot assign a value of type `::String` to an expression of type `::Integer`
65
+ ::String <: ::Integer
66
+ ::Object <: ::Integer
67
+ ::BasicObject <: ::Integer
68
+ code: Ruby::IncompatibleAssignment
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: steep
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.40.0
4
+ version: 0.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Soutaro Matsumoto
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-01-30 00:00:00.000000000 Z
11
+ date: 2021-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parser
@@ -182,6 +182,7 @@ files:
182
182
  - lib/steep/drivers/vendor.rb
183
183
  - lib/steep/drivers/watch.rb
184
184
  - lib/steep/drivers/worker.rb
185
+ - lib/steep/expectations.rb
185
186
  - lib/steep/index/rbs_index.rb
186
187
  - lib/steep/index/signature_symbol_provider.rb
187
188
  - lib/steep/index/source_index.rb
@@ -243,15 +244,15 @@ files:
243
244
  - smoke/alias/a.rbs
244
245
  - smoke/alias/b.rb
245
246
  - smoke/alias/c.rb
246
- - smoke/alias/test.yaml
247
+ - smoke/alias/test_expectations.yml
247
248
  - smoke/and/Steepfile
248
249
  - smoke/and/a.rb
249
- - smoke/and/test.yaml
250
+ - smoke/and/test_expectations.yml
250
251
  - smoke/array/Steepfile
251
252
  - smoke/array/a.rb
252
253
  - smoke/array/b.rb
253
254
  - smoke/array/c.rb
254
- - smoke/array/test.yaml
255
+ - smoke/array/test_expectations.yml
255
256
  - smoke/block/Steepfile
256
257
  - smoke/block/a.rb
257
258
  - smoke/block/a.rbs
@@ -259,14 +260,10 @@ files:
259
260
  - smoke/block/c.rb
260
261
  - smoke/block/c.rbs
261
262
  - smoke/block/d.rb
262
- - smoke/block/test.yaml
263
- - smoke/broken/Steepfile
264
- - smoke/broken/broken.rb
265
- - smoke/broken/broken.rbs
266
- - smoke/broken/test.yaml
263
+ - smoke/block/test_expectations.yml
267
264
  - smoke/case/Steepfile
268
265
  - smoke/case/a.rb
269
- - smoke/case/test.yaml
266
+ - smoke/case/test_expectations.yml
270
267
  - smoke/class/Steepfile
271
268
  - smoke/class/a.rb
272
269
  - smoke/class/a.rbs
@@ -278,15 +275,15 @@ files:
278
275
  - smoke/class/h.rbs
279
276
  - smoke/class/i.rb
280
277
  - smoke/class/i.rbs
281
- - smoke/class/test.yaml
278
+ - smoke/class/test_expectations.yml
282
279
  - smoke/const/Steepfile
283
280
  - smoke/const/a.rb
284
281
  - smoke/const/b.rb
285
282
  - smoke/const/b.rbs
286
- - smoke/const/test.yaml
283
+ - smoke/const/test_expectations.yml
287
284
  - smoke/diagnostics-rbs-duplicated/Steepfile
288
285
  - smoke/diagnostics-rbs-duplicated/a.rbs
289
- - smoke/diagnostics-rbs-duplicated/test.yaml
286
+ - smoke/diagnostics-rbs-duplicated/test_expectations.yml
290
287
  - smoke/diagnostics-rbs/Steepfile
291
288
  - smoke/diagnostics-rbs/duplicated-method-definition.rbs
292
289
  - smoke/diagnostics-rbs/generic-parameter-mismatch.rbs
@@ -296,7 +293,7 @@ files:
296
293
  - smoke/diagnostics-rbs/recursive-alias.rbs
297
294
  - smoke/diagnostics-rbs/recursive-class.rbs
298
295
  - smoke/diagnostics-rbs/superclass-mismatch.rbs
299
- - smoke/diagnostics-rbs/test.yaml
296
+ - smoke/diagnostics-rbs/test_expectations.yml
300
297
  - smoke/diagnostics-rbs/unknown-method-alias.rbs
301
298
  - smoke/diagnostics-rbs/unknown-type-name.rbs
302
299
  - smoke/diagnostics/Steepfile
@@ -317,7 +314,7 @@ files:
317
314
  - smoke/diagnostics/no_method.rb
318
315
  - smoke/diagnostics/required_block_missing.rb
319
316
  - smoke/diagnostics/return_type_mismatch.rb
320
- - smoke/diagnostics/test.yaml
317
+ - smoke/diagnostics/test_expectations.yml
321
318
  - smoke/diagnostics/unexpected_block_given.rb
322
319
  - smoke/diagnostics/unexpected_dynamic_method.rb
323
320
  - smoke/diagnostics/unexpected_jump.rb
@@ -331,14 +328,14 @@ files:
331
328
  - smoke/diagnostics/unsupported_syntax.rb
332
329
  - smoke/dstr/Steepfile
333
330
  - smoke/dstr/a.rb
334
- - smoke/dstr/test.yaml
331
+ - smoke/dstr/test_expectations.yml
335
332
  - smoke/ensure/Steepfile
336
333
  - smoke/ensure/a.rb
337
- - smoke/ensure/test.yaml
334
+ - smoke/ensure/test_expectations.yml
338
335
  - smoke/enumerator/Steepfile
339
336
  - smoke/enumerator/a.rb
340
337
  - smoke/enumerator/b.rb
341
- - smoke/enumerator/test.yaml
338
+ - smoke/enumerator/test_expectations.yml
342
339
  - smoke/extension/Steepfile
343
340
  - smoke/extension/a.rb
344
341
  - smoke/extension/a.rbs
@@ -347,7 +344,7 @@ files:
347
344
  - smoke/extension/d.rb
348
345
  - smoke/extension/e.rb
349
346
  - smoke/extension/e.rbs
350
- - smoke/extension/test.yaml
347
+ - smoke/extension/test_expectations.yml
351
348
  - smoke/hash/Steepfile
352
349
  - smoke/hash/a.rb
353
350
  - smoke/hash/a.rbs
@@ -357,43 +354,43 @@ files:
357
354
  - smoke/hash/e.rb
358
355
  - smoke/hash/e.rbs
359
356
  - smoke/hash/f.rb
360
- - smoke/hash/test.yaml
357
+ - smoke/hash/test_expectations.yml
361
358
  - smoke/hello/Steepfile
362
359
  - smoke/hello/hello.rb
363
360
  - smoke/hello/hello.rbs
364
- - smoke/hello/test.yaml
361
+ - smoke/hello/test_expectations.yml
365
362
  - smoke/if/Steepfile
366
363
  - smoke/if/a.rb
367
- - smoke/if/test.yaml
364
+ - smoke/if/test_expectations.yml
368
365
  - smoke/implements/Steepfile
369
366
  - smoke/implements/a.rb
370
367
  - smoke/implements/a.rbs
371
- - smoke/implements/test.yaml
368
+ - smoke/implements/test_expectations.yml
372
369
  - smoke/initialize/Steepfile
373
370
  - smoke/initialize/a.rb
374
371
  - smoke/initialize/a.rbs
375
- - smoke/initialize/test.yaml
372
+ - smoke/initialize/test_expectations.yml
376
373
  - smoke/integer/Steepfile
377
374
  - smoke/integer/a.rb
378
- - smoke/integer/test.yaml
375
+ - smoke/integer/test_expectations.yml
379
376
  - smoke/interface/Steepfile
380
377
  - smoke/interface/a.rb
381
378
  - smoke/interface/a.rbs
382
- - smoke/interface/test.yaml
379
+ - smoke/interface/test_expectations.yml
383
380
  - smoke/kwbegin/Steepfile
384
381
  - smoke/kwbegin/a.rb
385
- - smoke/kwbegin/test.yaml
382
+ - smoke/kwbegin/test_expectations.yml
386
383
  - smoke/lambda/Steepfile
387
384
  - smoke/lambda/a.rb
388
- - smoke/lambda/test.yaml
385
+ - smoke/lambda/test_expectations.yml
389
386
  - smoke/literal/Steepfile
390
387
  - smoke/literal/a.rb
391
388
  - smoke/literal/b.rb
392
389
  - smoke/literal/literal_methods.rbs
393
- - smoke/literal/test.yaml
390
+ - smoke/literal/test_expectations.yml
394
391
  - smoke/map/Steepfile
395
392
  - smoke/map/a.rb
396
- - smoke/map/test.yaml
393
+ - smoke/map/test_expectations.yml
397
394
  - smoke/method/Steepfile
398
395
  - smoke/method/a.rb
399
396
  - smoke/method/a.rbs
@@ -401,7 +398,7 @@ files:
401
398
  - smoke/method/c.rb
402
399
  - smoke/method/d.rb
403
400
  - smoke/method/d.rbs
404
- - smoke/method/test.yaml
401
+ - smoke/method/test_expectations.yml
405
402
  - smoke/module/Steepfile
406
403
  - smoke/module/a.rb
407
404
  - smoke/module/a.rbs
@@ -410,11 +407,11 @@ files:
410
407
  - smoke/module/d.rb
411
408
  - smoke/module/e.rb
412
409
  - smoke/module/f.rb
413
- - smoke/module/test.yaml
410
+ - smoke/module/test_expectations.yml
414
411
  - smoke/regexp/Steepfile
415
412
  - smoke/regexp/a.rb
416
413
  - smoke/regexp/b.rb
417
- - smoke/regexp/test.yaml
414
+ - smoke/regexp/test_expectations.yml
418
415
  - smoke/regression/Steepfile
419
416
  - smoke/regression/array.rb
420
417
  - smoke/regression/fun.rb
@@ -424,39 +421,39 @@ files:
424
421
  - smoke/regression/poly_new.rbs
425
422
  - smoke/regression/range.rb
426
423
  - smoke/regression/set_divide.rb
427
- - smoke/regression/test.yaml
424
+ - smoke/regression/test_expectations.yml
428
425
  - smoke/rescue/Steepfile
429
426
  - smoke/rescue/a.rb
430
- - smoke/rescue/test.yaml
427
+ - smoke/rescue/test_expectations.yml
431
428
  - smoke/self/Steepfile
432
429
  - smoke/self/a.rb
433
430
  - smoke/self/a.rbs
434
- - smoke/self/test.yaml
431
+ - smoke/self/test_expectations.yml
435
432
  - smoke/skip/Steepfile
436
433
  - smoke/skip/skip.rb
437
- - smoke/skip/test.yaml
434
+ - smoke/skip/test_expectations.yml
438
435
  - smoke/stdout/Steepfile
439
436
  - smoke/stdout/a.rb
440
437
  - smoke/stdout/a.rbs
441
- - smoke/stdout/test.yaml
438
+ - smoke/stdout/test_expectations.yml
442
439
  - smoke/super/Steepfile
443
440
  - smoke/super/a.rb
444
441
  - smoke/super/a.rbs
445
- - smoke/super/test.yaml
442
+ - smoke/super/test_expectations.yml
446
443
  - smoke/toplevel/Steepfile
447
444
  - smoke/toplevel/a.rb
448
445
  - smoke/toplevel/a.rbs
449
- - smoke/toplevel/test.yaml
446
+ - smoke/toplevel/test_expectations.yml
450
447
  - smoke/tsort/Steepfile
451
448
  - smoke/tsort/a.rb
452
- - smoke/tsort/test.yaml
449
+ - smoke/tsort/test_expectations.yml
453
450
  - smoke/type_case/Steepfile
454
451
  - smoke/type_case/a.rb
455
- - smoke/type_case/test.yaml
452
+ - smoke/type_case/test_expectations.yml
456
453
  - smoke/yield/Steepfile
457
454
  - smoke/yield/a.rb
458
455
  - smoke/yield/b.rb
459
- - smoke/yield/test.yaml
456
+ - smoke/yield/test_expectations.yml
460
457
  - steep.gemspec
461
458
  homepage: https://github.com/soutaro/steep
462
459
  licenses: