minitest-spec-rails 6.0.3 → 6.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aa9f5efa42df7a6ad9c3615adc5569edfd4dedf960fd39533df197fa880ff672
4
- data.tar.gz: 66bb017c19b46242947037da6e0be5b8916dcb4cfbdfe8769470314a852c28e8
3
+ metadata.gz: a822dd4545199db4b739fcdce3cd6f37ba52b33ee2003b35c0e38a454beb2d95
4
+ data.tar.gz: 7862edf7f6a40838e622e2b1f6eba095df42f760f257ae71df5b5bf06e4bf7ee
5
5
  SHA512:
6
- metadata.gz: c2d77a369ba31f3d55694e590d0d3a5de5df50f93473cfce88f09ae283b591ea495bfb68770baca1b446b59c35ac29ec71f49dcd664e931d8dbbca36af0cda06
7
- data.tar.gz: 1b52ac1fd51187563f32369cc3131a2203812d04ffc440a50aecd1ef0ca4226aee65bf5abf09d8b8f432a831860ae7d4dc79b17459813b38dabdc42359a0a96d
6
+ metadata.gz: fe7c82452120cd6c56f409d4b0270da309b07edd7fe37267c033491df703434f693a5d46d675e9ff8b837a7b5077a3a116b20ca5d3ef2f10edc3d97a4df48566
7
+ data.tar.gz: d0ad9ced0e0fbe397973fd28c57fa42b86f15b9a8ea368bd63a45128b1d812aa19fd8f6002d4eb0b9da0423e7e481837ed9c2340218e17e5bbfd6f2588fe6be8
@@ -18,7 +18,7 @@ jobs:
18
18
  - name: Setup System
19
19
  run: |
20
20
  sudo apt-get install libsqlite3-dev
21
- echo "::set-env name=MTSR_RAILS_VERSION::${{ matrix.rails }}"
21
+ echo "MTSR_RAILS_VERSION=${{ matrix.rails }}" >> $GITHUB_ENV
22
22
  - name: Setup Ruby
23
23
  uses: actions/setup-ruby@v1
24
24
  with:
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 6.0.4
2
+
3
+ * Fixed parallel tests with relative paths. Thanks @jlsherrill
4
+
1
5
  ## 6.0.3
2
6
 
3
7
  * Better ActionView load. Fixed #105. Thanks @zofrex
data/README.md CHANGED
@@ -56,7 +56,7 @@ gem 'minitest-spec-rails'
56
56
 
57
57
  ## Test Styles
58
58
 
59
- This <a href="http://cheat.errtheblog.com/s/minitest">cheat sheet</a> shows both the MiniTest::Unit assertions along with the MiniTest::Spec assertion syntax. Remember, MiniTest::Spec is built on top of MiniTest::Unit which is a Test::Unit replacement. That means you can mix and match styles as you upgrade from Test::Unit to a more modern style. For example, both of these would work in MiniTest::Spec and are interchangeable.
59
+ This <a href="https://chriskottom.com/freebies/cheatsheets_free.pdf">cheat sheet</a> shows both the MiniTest::Unit assertions along with the MiniTest::Spec assertion syntax. Remember, MiniTest::Spec is built on top of MiniTest::Unit which is a Test::Unit replacement. That means you can mix and match styles as you upgrade from Test::Unit to a more modern style. For example, both of these would work in MiniTest::Spec and are interchangeable.
60
60
 
61
61
  ```ruby
62
62
  # MiniTest::Unit Assertion Style:
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- minitest-spec-rails (6.0.2)
4
+ minitest-spec-rails (6.0.4)
5
5
  minitest (>= 5.0)
6
6
  railties (>= 4.1)
7
7
 
@@ -45,32 +45,34 @@ GEM
45
45
  i18n (>= 0.7, < 2)
46
46
  minitest (~> 5.1)
47
47
  tzinfo (~> 1.1)
48
- appraisal (2.2.0)
48
+ appraisal (2.4.0)
49
49
  bundler
50
50
  rake
51
51
  thor (>= 0.14.0)
52
52
  arel (8.0.0)
53
- builder (3.2.3)
54
- concurrent-ruby (1.1.5)
55
- crass (1.0.5)
56
- erubi (1.9.0)
53
+ builder (3.2.4)
54
+ concurrent-ruby (1.1.8)
55
+ crass (1.0.6)
56
+ erubi (1.10.0)
57
57
  globalid (0.4.2)
58
58
  activesupport (>= 4.2.0)
59
- i18n (1.7.0)
59
+ i18n (1.8.10)
60
60
  concurrent-ruby (~> 1.0)
61
- loofah (2.4.0)
61
+ loofah (2.9.1)
62
62
  crass (~> 1.0.2)
63
63
  nokogiri (>= 1.5.9)
64
64
  mail (2.7.1)
65
65
  mini_mime (>= 0.1.1)
66
- method_source (0.9.2)
67
- mini_mime (1.0.2)
68
- mini_portile2 (2.4.0)
66
+ method_source (1.0.0)
67
+ mini_mime (1.1.0)
68
+ mini_portile2 (2.5.1)
69
69
  minitest (5.10.1)
70
- nio4r (2.5.2)
71
- nokogiri (1.10.5)
72
- mini_portile2 (~> 2.4.0)
73
- rack (2.0.7)
70
+ nio4r (2.5.7)
71
+ nokogiri (1.11.3)
72
+ mini_portile2 (~> 2.5.0)
73
+ racc (~> 1.4)
74
+ racc (1.5.2)
75
+ rack (2.2.3)
74
76
  rack-test (1.1.0)
75
77
  rack (>= 1.0, < 3)
76
78
  rails (5.1.7)
@@ -96,22 +98,22 @@ GEM
96
98
  method_source
97
99
  rake (>= 0.8.7)
98
100
  thor (>= 0.18.1, < 2.0)
99
- rake (13.0.1)
100
- sprockets (4.0.0)
101
+ rake (13.0.3)
102
+ sprockets (4.0.2)
101
103
  concurrent-ruby (~> 1.0)
102
104
  rack (> 1, < 3)
103
- sprockets-rails (3.2.1)
105
+ sprockets-rails (3.2.2)
104
106
  actionpack (>= 4.0)
105
107
  activesupport (>= 4.0)
106
108
  sprockets (>= 3.0.0)
107
- sqlite3 (1.4.1)
108
- thor (0.20.3)
109
+ sqlite3 (1.4.2)
110
+ thor (1.1.0)
109
111
  thread_safe (0.3.6)
110
- tzinfo (1.2.5)
112
+ tzinfo (1.2.9)
111
113
  thread_safe (~> 0.1)
112
114
  websocket-driver (0.6.5)
113
115
  websocket-extensions (>= 0.1.0)
114
- websocket-extensions (0.1.4)
116
+ websocket-extensions (0.1.5)
115
117
 
116
118
  PLATFORMS
117
119
  ruby
@@ -1,125 +1,125 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- minitest-spec-rails (6.0.2)
4
+ minitest-spec-rails (6.0.4)
5
5
  minitest (>= 5.0)
6
6
  railties (>= 4.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (5.2.4)
12
- actionpack (= 5.2.4)
11
+ actioncable (5.2.5)
12
+ actionpack (= 5.2.5)
13
13
  nio4r (~> 2.0)
14
14
  websocket-driver (>= 0.6.1)
15
- actionmailer (5.2.4)
16
- actionpack (= 5.2.4)
17
- actionview (= 5.2.4)
18
- activejob (= 5.2.4)
15
+ actionmailer (5.2.5)
16
+ actionpack (= 5.2.5)
17
+ actionview (= 5.2.5)
18
+ activejob (= 5.2.5)
19
19
  mail (~> 2.5, >= 2.5.4)
20
20
  rails-dom-testing (~> 2.0)
21
- actionpack (5.2.4)
22
- actionview (= 5.2.4)
23
- activesupport (= 5.2.4)
24
- rack (~> 2.0)
21
+ actionpack (5.2.5)
22
+ actionview (= 5.2.5)
23
+ activesupport (= 5.2.5)
24
+ rack (~> 2.0, >= 2.0.8)
25
25
  rack-test (>= 0.6.3)
26
26
  rails-dom-testing (~> 2.0)
27
27
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.2.4)
29
- activesupport (= 5.2.4)
28
+ actionview (5.2.5)
29
+ activesupport (= 5.2.5)
30
30
  builder (~> 3.1)
31
31
  erubi (~> 1.4)
32
32
  rails-dom-testing (~> 2.0)
33
33
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.2.4)
35
- activesupport (= 5.2.4)
34
+ activejob (5.2.5)
35
+ activesupport (= 5.2.5)
36
36
  globalid (>= 0.3.6)
37
- activemodel (5.2.4)
38
- activesupport (= 5.2.4)
39
- activerecord (5.2.4)
40
- activemodel (= 5.2.4)
41
- activesupport (= 5.2.4)
37
+ activemodel (5.2.5)
38
+ activesupport (= 5.2.5)
39
+ activerecord (5.2.5)
40
+ activemodel (= 5.2.5)
41
+ activesupport (= 5.2.5)
42
42
  arel (>= 9.0)
43
- activestorage (5.2.4)
44
- actionpack (= 5.2.4)
45
- activerecord (= 5.2.4)
46
- marcel (~> 0.3.1)
47
- activesupport (5.2.4)
43
+ activestorage (5.2.5)
44
+ actionpack (= 5.2.5)
45
+ activerecord (= 5.2.5)
46
+ marcel (~> 1.0.0)
47
+ activesupport (5.2.5)
48
48
  concurrent-ruby (~> 1.0, >= 1.0.2)
49
49
  i18n (>= 0.7, < 2)
50
50
  minitest (~> 5.1)
51
51
  tzinfo (~> 1.1)
52
- appraisal (2.2.0)
52
+ appraisal (2.4.0)
53
53
  bundler
54
54
  rake
55
55
  thor (>= 0.14.0)
56
56
  arel (9.0.0)
57
- builder (3.2.3)
58
- concurrent-ruby (1.1.5)
59
- crass (1.0.5)
60
- erubi (1.9.0)
57
+ builder (3.2.4)
58
+ concurrent-ruby (1.1.8)
59
+ crass (1.0.6)
60
+ erubi (1.10.0)
61
61
  globalid (0.4.2)
62
62
  activesupport (>= 4.2.0)
63
- i18n (1.7.0)
63
+ i18n (1.8.10)
64
64
  concurrent-ruby (~> 1.0)
65
- loofah (2.4.0)
65
+ loofah (2.9.1)
66
66
  crass (~> 1.0.2)
67
67
  nokogiri (>= 1.5.9)
68
68
  mail (2.7.1)
69
69
  mini_mime (>= 0.1.1)
70
- marcel (0.3.3)
71
- mimemagic (~> 0.3.2)
72
- method_source (0.9.2)
73
- mimemagic (0.3.3)
74
- mini_mime (1.0.2)
75
- mini_portile2 (2.4.0)
76
- minitest (5.13.0)
77
- nio4r (2.5.2)
78
- nokogiri (1.10.5)
79
- mini_portile2 (~> 2.4.0)
80
- rack (2.0.7)
70
+ marcel (1.0.1)
71
+ method_source (1.0.0)
72
+ mini_mime (1.1.0)
73
+ mini_portile2 (2.5.1)
74
+ minitest (5.14.4)
75
+ nio4r (2.5.7)
76
+ nokogiri (1.11.3)
77
+ mini_portile2 (~> 2.5.0)
78
+ racc (~> 1.4)
79
+ racc (1.5.2)
80
+ rack (2.2.3)
81
81
  rack-test (1.1.0)
82
82
  rack (>= 1.0, < 3)
83
- rails (5.2.4)
84
- actioncable (= 5.2.4)
85
- actionmailer (= 5.2.4)
86
- actionpack (= 5.2.4)
87
- actionview (= 5.2.4)
88
- activejob (= 5.2.4)
89
- activemodel (= 5.2.4)
90
- activerecord (= 5.2.4)
91
- activestorage (= 5.2.4)
92
- activesupport (= 5.2.4)
83
+ rails (5.2.5)
84
+ actioncable (= 5.2.5)
85
+ actionmailer (= 5.2.5)
86
+ actionpack (= 5.2.5)
87
+ actionview (= 5.2.5)
88
+ activejob (= 5.2.5)
89
+ activemodel (= 5.2.5)
90
+ activerecord (= 5.2.5)
91
+ activestorage (= 5.2.5)
92
+ activesupport (= 5.2.5)
93
93
  bundler (>= 1.3.0)
94
- railties (= 5.2.4)
94
+ railties (= 5.2.5)
95
95
  sprockets-rails (>= 2.0.0)
96
96
  rails-dom-testing (2.0.3)
97
97
  activesupport (>= 4.2.0)
98
98
  nokogiri (>= 1.6)
99
99
  rails-html-sanitizer (1.3.0)
100
100
  loofah (~> 2.3)
101
- railties (5.2.4)
102
- actionpack (= 5.2.4)
103
- activesupport (= 5.2.4)
101
+ railties (5.2.5)
102
+ actionpack (= 5.2.5)
103
+ activesupport (= 5.2.5)
104
104
  method_source
105
105
  rake (>= 0.8.7)
106
106
  thor (>= 0.19.0, < 2.0)
107
- rake (13.0.1)
108
- sprockets (4.0.0)
107
+ rake (13.0.3)
108
+ sprockets (4.0.2)
109
109
  concurrent-ruby (~> 1.0)
110
110
  rack (> 1, < 3)
111
- sprockets-rails (3.2.1)
111
+ sprockets-rails (3.2.2)
112
112
  actionpack (>= 4.0)
113
113
  activesupport (>= 4.0)
114
114
  sprockets (>= 3.0.0)
115
- sqlite3 (1.4.1)
116
- thor (0.20.3)
115
+ sqlite3 (1.4.2)
116
+ thor (1.1.0)
117
117
  thread_safe (0.3.6)
118
- tzinfo (1.2.5)
118
+ tzinfo (1.2.9)
119
119
  thread_safe (~> 0.1)
120
- websocket-driver (0.7.1)
120
+ websocket-driver (0.7.3)
121
121
  websocket-extensions (>= 0.1.0)
122
- websocket-extensions (0.1.4)
122
+ websocket-extensions (0.1.5)
123
123
 
124
124
  PLATFORMS
125
125
  ruby
@@ -1,141 +1,141 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- minitest-spec-rails (6.0.2)
4
+ minitest-spec-rails (6.0.4)
5
5
  minitest (>= 5.0)
6
6
  railties (>= 4.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (6.0.1)
12
- actionpack (= 6.0.1)
11
+ actioncable (6.0.3.6)
12
+ actionpack (= 6.0.3.6)
13
13
  nio4r (~> 2.0)
14
14
  websocket-driver (>= 0.6.1)
15
- actionmailbox (6.0.1)
16
- actionpack (= 6.0.1)
17
- activejob (= 6.0.1)
18
- activerecord (= 6.0.1)
19
- activestorage (= 6.0.1)
20
- activesupport (= 6.0.1)
15
+ actionmailbox (6.0.3.6)
16
+ actionpack (= 6.0.3.6)
17
+ activejob (= 6.0.3.6)
18
+ activerecord (= 6.0.3.6)
19
+ activestorage (= 6.0.3.6)
20
+ activesupport (= 6.0.3.6)
21
21
  mail (>= 2.7.1)
22
- actionmailer (6.0.1)
23
- actionpack (= 6.0.1)
24
- actionview (= 6.0.1)
25
- activejob (= 6.0.1)
22
+ actionmailer (6.0.3.6)
23
+ actionpack (= 6.0.3.6)
24
+ actionview (= 6.0.3.6)
25
+ activejob (= 6.0.3.6)
26
26
  mail (~> 2.5, >= 2.5.4)
27
27
  rails-dom-testing (~> 2.0)
28
- actionpack (6.0.1)
29
- actionview (= 6.0.1)
30
- activesupport (= 6.0.1)
31
- rack (~> 2.0)
28
+ actionpack (6.0.3.6)
29
+ actionview (= 6.0.3.6)
30
+ activesupport (= 6.0.3.6)
31
+ rack (~> 2.0, >= 2.0.8)
32
32
  rack-test (>= 0.6.3)
33
33
  rails-dom-testing (~> 2.0)
34
34
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
35
- actiontext (6.0.1)
36
- actionpack (= 6.0.1)
37
- activerecord (= 6.0.1)
38
- activestorage (= 6.0.1)
39
- activesupport (= 6.0.1)
35
+ actiontext (6.0.3.6)
36
+ actionpack (= 6.0.3.6)
37
+ activerecord (= 6.0.3.6)
38
+ activestorage (= 6.0.3.6)
39
+ activesupport (= 6.0.3.6)
40
40
  nokogiri (>= 1.8.5)
41
- actionview (6.0.1)
42
- activesupport (= 6.0.1)
41
+ actionview (6.0.3.6)
42
+ activesupport (= 6.0.3.6)
43
43
  builder (~> 3.1)
44
44
  erubi (~> 1.4)
45
45
  rails-dom-testing (~> 2.0)
46
46
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
47
- activejob (6.0.1)
48
- activesupport (= 6.0.1)
47
+ activejob (6.0.3.6)
48
+ activesupport (= 6.0.3.6)
49
49
  globalid (>= 0.3.6)
50
- activemodel (6.0.1)
51
- activesupport (= 6.0.1)
52
- activerecord (6.0.1)
53
- activemodel (= 6.0.1)
54
- activesupport (= 6.0.1)
55
- activestorage (6.0.1)
56
- actionpack (= 6.0.1)
57
- activejob (= 6.0.1)
58
- activerecord (= 6.0.1)
59
- marcel (~> 0.3.1)
60
- activesupport (6.0.1)
50
+ activemodel (6.0.3.6)
51
+ activesupport (= 6.0.3.6)
52
+ activerecord (6.0.3.6)
53
+ activemodel (= 6.0.3.6)
54
+ activesupport (= 6.0.3.6)
55
+ activestorage (6.0.3.6)
56
+ actionpack (= 6.0.3.6)
57
+ activejob (= 6.0.3.6)
58
+ activerecord (= 6.0.3.6)
59
+ marcel (~> 1.0.0)
60
+ activesupport (6.0.3.6)
61
61
  concurrent-ruby (~> 1.0, >= 1.0.2)
62
62
  i18n (>= 0.7, < 2)
63
63
  minitest (~> 5.1)
64
64
  tzinfo (~> 1.1)
65
- zeitwerk (~> 2.2)
66
- appraisal (2.2.0)
65
+ zeitwerk (~> 2.2, >= 2.2.2)
66
+ appraisal (2.4.0)
67
67
  bundler
68
68
  rake
69
69
  thor (>= 0.14.0)
70
- builder (3.2.3)
71
- concurrent-ruby (1.1.5)
72
- crass (1.0.5)
73
- erubi (1.9.0)
70
+ builder (3.2.4)
71
+ concurrent-ruby (1.1.8)
72
+ crass (1.0.6)
73
+ erubi (1.10.0)
74
74
  globalid (0.4.2)
75
75
  activesupport (>= 4.2.0)
76
- i18n (1.7.0)
76
+ i18n (1.8.10)
77
77
  concurrent-ruby (~> 1.0)
78
- loofah (2.4.0)
78
+ loofah (2.9.1)
79
79
  crass (~> 1.0.2)
80
80
  nokogiri (>= 1.5.9)
81
81
  mail (2.7.1)
82
82
  mini_mime (>= 0.1.1)
83
- marcel (0.3.3)
84
- mimemagic (~> 0.3.2)
85
- method_source (0.9.2)
86
- mimemagic (0.3.3)
87
- mini_mime (1.0.2)
88
- mini_portile2 (2.4.0)
89
- minitest (5.13.0)
90
- nio4r (2.5.2)
91
- nokogiri (1.10.5)
92
- mini_portile2 (~> 2.4.0)
93
- rack (2.0.7)
83
+ marcel (1.0.1)
84
+ method_source (1.0.0)
85
+ mini_mime (1.1.0)
86
+ mini_portile2 (2.5.1)
87
+ minitest (5.14.4)
88
+ nio4r (2.5.7)
89
+ nokogiri (1.11.3)
90
+ mini_portile2 (~> 2.5.0)
91
+ racc (~> 1.4)
92
+ racc (1.5.2)
93
+ rack (2.2.3)
94
94
  rack-test (1.1.0)
95
95
  rack (>= 1.0, < 3)
96
- rails (6.0.1)
97
- actioncable (= 6.0.1)
98
- actionmailbox (= 6.0.1)
99
- actionmailer (= 6.0.1)
100
- actionpack (= 6.0.1)
101
- actiontext (= 6.0.1)
102
- actionview (= 6.0.1)
103
- activejob (= 6.0.1)
104
- activemodel (= 6.0.1)
105
- activerecord (= 6.0.1)
106
- activestorage (= 6.0.1)
107
- activesupport (= 6.0.1)
96
+ rails (6.0.3.6)
97
+ actioncable (= 6.0.3.6)
98
+ actionmailbox (= 6.0.3.6)
99
+ actionmailer (= 6.0.3.6)
100
+ actionpack (= 6.0.3.6)
101
+ actiontext (= 6.0.3.6)
102
+ actionview (= 6.0.3.6)
103
+ activejob (= 6.0.3.6)
104
+ activemodel (= 6.0.3.6)
105
+ activerecord (= 6.0.3.6)
106
+ activestorage (= 6.0.3.6)
107
+ activesupport (= 6.0.3.6)
108
108
  bundler (>= 1.3.0)
109
- railties (= 6.0.1)
109
+ railties (= 6.0.3.6)
110
110
  sprockets-rails (>= 2.0.0)
111
111
  rails-dom-testing (2.0.3)
112
112
  activesupport (>= 4.2.0)
113
113
  nokogiri (>= 1.6)
114
114
  rails-html-sanitizer (1.3.0)
115
115
  loofah (~> 2.3)
116
- railties (6.0.1)
117
- actionpack (= 6.0.1)
118
- activesupport (= 6.0.1)
116
+ railties (6.0.3.6)
117
+ actionpack (= 6.0.3.6)
118
+ activesupport (= 6.0.3.6)
119
119
  method_source
120
120
  rake (>= 0.8.7)
121
121
  thor (>= 0.20.3, < 2.0)
122
- rake (13.0.1)
123
- sprockets (4.0.0)
122
+ rake (13.0.3)
123
+ sprockets (4.0.2)
124
124
  concurrent-ruby (~> 1.0)
125
125
  rack (> 1, < 3)
126
- sprockets-rails (3.2.1)
126
+ sprockets-rails (3.2.2)
127
127
  actionpack (>= 4.0)
128
128
  activesupport (>= 4.0)
129
129
  sprockets (>= 3.0.0)
130
- sqlite3 (1.4.1)
131
- thor (0.20.3)
130
+ sqlite3 (1.4.2)
131
+ thor (1.1.0)
132
132
  thread_safe (0.3.6)
133
- tzinfo (1.2.5)
133
+ tzinfo (1.2.9)
134
134
  thread_safe (~> 0.1)
135
- websocket-driver (0.7.1)
135
+ websocket-driver (0.7.3)
136
136
  websocket-extensions (>= 0.1.0)
137
- websocket-extensions (0.1.4)
138
- zeitwerk (2.2.1)
137
+ websocket-extensions (0.1.5)
138
+ zeitwerk (2.4.2)
139
139
 
140
140
  PLATFORMS
141
141
  ruby
@@ -19,7 +19,7 @@ module Kernel #:nodoc:
19
19
  cls_const = "Test__#{cls.name.to_s.split(/\W/).reject(&:empty?).join('_'.freeze)}"
20
20
  if block.source_location
21
21
  source_path, line_num = block.source_location
22
- source_path = Pathname.new(source_path).relative_path_from(Rails.root).to_s
22
+ source_path = Pathname.new(File.expand_path(source_path)).relative_path_from(Rails.root).to_s
23
23
  source_path = source_path.split(/\W/).reject(&:empty?).join("_".freeze)
24
24
  cls_const += "__#{source_path}__#{line_num}"
25
25
  end
@@ -1,3 +1,3 @@
1
1
  module MiniTestSpecRails
2
- VERSION = '6.0.3'.freeze
2
+ VERSION = '6.0.4'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-spec-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.3
4
+ version: 6.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ken Collins
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-30 00:00:00.000000000 Z
11
+ date: 2021-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest