Sha256: 466fd41ccfa621739575283e8166dcb6d3cb79a5813bfebc1a12d23ce9e7922d
Contents?: true
Size: 497 Bytes
Versions: 80
Compression:
Stored size: 497 Bytes
Contents
When /^I get the nodes status with "([^"]*)"$/ do |app_name| node_cmd(app_name, %W(status -n vagrant)) end When /^I up the nodes with "([^"]*)"$/ do |app_name| node_cmd(app_name, %W(up -n vagrant)) end When /^I down the nodes with "([^"]*)"$/ do |app_name| node_cmd(app_name, %W(down -n vagrant)) end When /^I build the nodes with "([^"]*)"$/ do |app_name| node_cmd(app_name, %W(build -n vagrant)) end def node_cmd(app_name, *args) testlab_cmd(app_name, [%(node), args].flatten) end
Version data entries
80 entries across 80 versions & 1 rubygems