class ChefSpec::SoloRunner
def self.converge(*recipe_names)
ChefSpec::SoloRunner.converge('cookbook::recipe')
@example
initializing the runner with custom options.
Handy class method for just converging a runner if you do not care about
def self.converge(*recipe_names) new.tap do |instance| instance.converge(*recipe_names) end end