@@ -251,7 +251,7 @@ def exec(command, args)
251251 expect ( out ) . to include ( "Bundle complete!" )
252252
253253 expect ( the_bundle ) . to include_gems ( "rack 1.0.0" )
254- plugin_should_be_installed ( "foo" , version : "1.4.0" )
254+ plugin_should_be_installed_with_version ( "foo" , "1.4.0" )
255255
256256 gemfile <<-G
257257 source '#{ file_uri_for ( gem_repo2 ) } '
@@ -265,7 +265,7 @@ def exec(command, args)
265265 expect ( out ) . to include ( "Bundle complete!" )
266266
267267 expect ( the_bundle ) . to include_gems ( "rack 1.0.0" )
268- plugin_should_be_installed ( "foo" , version : "1.5.0" )
268+ plugin_should_be_installed_with_version ( "foo" , "1.5.0" )
269269 end
270270
271271 it "downgrade plugins version listed in gemfile" do
@@ -287,7 +287,7 @@ def exec(command, args)
287287 expect ( out ) . to include ( "Bundle complete!" )
288288
289289 expect ( the_bundle ) . to include_gems ( "rack 1.0.0" )
290- plugin_should_be_installed ( "foo" , version : "1.5.0" )
290+ plugin_should_be_installed_with_version ( "foo" , "1.5.0" )
291291
292292 gemfile <<-G
293293 source '#{ file_uri_for ( gem_repo2 ) } '
@@ -301,7 +301,7 @@ def exec(command, args)
301301 expect ( out ) . to include ( "Bundle complete!" )
302302
303303 expect ( the_bundle ) . to include_gems ( "rack 1.0.0" )
304- plugin_should_be_installed ( "foo" , version : "1.4.0" )
304+ plugin_should_be_installed_with_version ( "foo" , "1.4.0" )
305305 end
306306
307307 it "install only plugins not installed yet listed in gemfile" do
0 commit comments