File tree 3 files changed +15
-17
lines changed
3 files changed +15
-17
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,7 @@ group :development do
19
19
gem "cucumber" , "~> 6.0"
20
20
gem "minitest"
21
21
gem "rake"
22
- gem "rspec" , "~> 3.10"
23
- gem "rspec-mocks" , "3.10.2"
22
+ gem "rspec"
24
23
gem "pry"
25
24
gem "rubocop"
26
25
gem "test-unit"
Original file line number Diff line number Diff line change @@ -134,19 +134,19 @@ GEM
134
134
rake (13.1.0 )
135
135
regexp_parser (2.8.3 )
136
136
rexml (3.2.6 )
137
- rspec (3.10 .0 )
138
- rspec-core (~> 3.10 .0 )
139
- rspec-expectations (~> 3.10 .0 )
140
- rspec-mocks (~> 3.10 .0 )
141
- rspec-core (3.10 .2 )
142
- rspec-support (~> 3.10 .0 )
143
- rspec-expectations (3.10.2 )
137
+ rspec (3.12 .0 )
138
+ rspec-core (~> 3.12 .0 )
139
+ rspec-expectations (~> 3.12 .0 )
140
+ rspec-mocks (~> 3.12 .0 )
141
+ rspec-core (3.12 .2 )
142
+ rspec-support (~> 3.12 .0 )
143
+ rspec-expectations (3.12.3 )
144
144
diff-lcs (>= 1.2.0 , < 2.0 )
145
- rspec-support (~> 3.10 .0 )
146
- rspec-mocks (3.10.2 )
145
+ rspec-support (~> 3.12 .0 )
146
+ rspec-mocks (3.12.6 )
147
147
diff-lcs (>= 1.2.0 , < 2.0 )
148
- rspec-support (~> 3.10 .0 )
149
- rspec-support (3.10.3 )
148
+ rspec-support (~> 3.12 .0 )
149
+ rspec-support (3.12.1 )
150
150
rubocop (1.59.0 )
151
151
json (~> 2.3 )
152
152
language_server-protocol (>= 3.17.0 )
@@ -202,8 +202,7 @@ DEPENDENCIES
202
202
pry
203
203
rackup
204
204
rake
205
- rspec (~> 3.10 )
206
- rspec-mocks (= 3.10.2 )
205
+ rspec
207
206
rubocop
208
207
simplecov !
209
208
test-unit
Original file line number Diff line number Diff line change @@ -327,13 +327,13 @@ def expect_merged
327
327
end
328
328
329
329
it "starts coverage in lines mode by default" do
330
- expect ( Coverage ) . to receive ( :start ) . with ( lines : true )
330
+ expect ( Coverage ) . to receive ( :start ) . with ( { lines : true } )
331
331
332
332
SimpleCov . send :start_coverage_measurement
333
333
end
334
334
335
335
it "starts coverage with lines and branches if branches is activated" do
336
- expect ( Coverage ) . to receive ( :start ) . with ( lines : true , branches : true )
336
+ expect ( Coverage ) . to receive ( :start ) . with ( { lines : true , branches : true } )
337
337
338
338
SimpleCov . enable_coverage :branch
339
339
You can’t perform that action at this time.
0 commit comments