pharo-project / pharo-launcher

Lets you manage your pharo images and download new ones
https://pharo-project.github.io/pharo-launcher/
MIT License
108 stars 46 forks source link

create image fromRepo should launch image #651

Open demarey opened 5 months ago

demarey commented 5 months ago

create image fromRepo should launch image like other create image commands

demarey commented 4 months ago

This test should pass

testCreateImageWithNoLaunchFlagShouldNotLaunchImage
    | command |

    command := (context arguments: #('launcher' 'image' 'create' 'fromPR' '9588' '--no-launch')) command.
    command imageFinderClass: PhLImageFinderStub.

    command execute.

    self deny: self imageRepository images first isLaunched