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

Version Path
testlab-1.8.2 features/step_definitions/node_steps.rb
testlab-1.8.1 features/step_definitions/node_steps.rb
testlab-1.8.0 features/step_definitions/node_steps.rb
testlab-1.7.1 features/step_definitions/node_steps.rb
testlab-1.7.0 features/step_definitions/node_steps.rb
testlab-1.6.6 features/step_definitions/node_steps.rb
testlab-1.6.5 features/step_definitions/node_steps.rb
testlab-1.6.4 features/step_definitions/node_steps.rb
testlab-1.6.3 features/step_definitions/node_steps.rb
testlab-1.6.2 features/step_definitions/node_steps.rb
testlab-1.6.1 features/step_definitions/node_steps.rb
testlab-1.6.0 features/step_definitions/node_steps.rb
testlab-1.5.1 features/step_definitions/node_steps.rb
testlab-1.5.0 features/step_definitions/node_steps.rb
testlab-1.4.4 features/step_definitions/node_steps.rb
testlab-1.4.3 features/step_definitions/node_steps.rb
testlab-1.4.2 features/step_definitions/node_steps.rb
testlab-1.4.1 features/step_definitions/node_steps.rb
testlab-1.4.0 features/step_definitions/node_steps.rb
testlab-1.3.2 features/step_definitions/node_steps.rb