File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -191,27 +191,32 @@ crew_test("custom launcher", {
191191})
192192
193193crew_test(" deprecate seconds_exit" , {
194+ skip_on_cran()
194195 suppressWarnings(crew_launcher(seconds_exit = 1 ))
195196 expect_true(TRUE )
196197})
197198
198199crew_test(" deprecated crashes() method" , {
200+ skip_on_cran()
199201 x <- crew_launcher_local()
200202 expect_equal(x $ crashes(index = 1L ), 1L )
201203})
202204
203205crew_test(" deprecated set_name() method" , {
206+ skip_on_cran()
204207 x <- crew_launcher_local(name = " x" )
205208 x $ set_name(name = " y" )
206209 expect_equal(x $ name , " y" )
207210})
208211
209212crew_test(" deprecated terminate_workers()" , {
213+ skip_on_cran()
210214 x <- crew_launcher(name = " x" )
211215 expect_message(x $ terminate_workers(), class = " crew_deprecate" )
212216})
213217
214218crew_test(" deprecated async$eval()" , {
219+ skip_on_cran()
215220 x <- crew_launcher(name = " x" )
216221 expect_equal(x $ async $ eval(1L + 1L ), 2L )
217222 expect_equal(deprecated_async_eval(1L + 1L ), 2L )
You can’t perform that action at this time.
0 commit comments