Sha256: bc437bd49be7e28cad55c5803d3c45626ec9a8caa6e6dccf18bb0c69d186354e

Contents?: true

Size: 843 Bytes

Versions: 6

Compression:

Stored size: 843 Bytes

Contents

Feature: Adding slave nodes
  In order to have different environments for different projects
  As a developer
  I want to add new slave nodes to my Hudson instance

  Background:
    Given I have a Hudson server running
    And the Hudson server has no slaves

  Scenario: List available slaves (hudson nodes)
    When I run local executable "hudson" with arguments "nodes --host localhost --port 3010"
    Then I should see exactly
      """
      master
      """

    When I create a new node with the following options on "http://localhost:3010":
      | name       | Slave 1        |
      | label      | app1 app2 app3 |
      | slave_host | foo1.bar.com   |
      | slave_user | hudson         |
    When I run local executable "hudson" with arguments "nodes"
    Then I should see exactly
      """
      master
      Slave 1
      """

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
hudson-0.3.0.beta.17 features/manage_slave_nodes.feature
hudson-0.3.0.beta.16 features/manage_slave_nodes.feature
hudson-0.3.0.beta.15 features/manage_slave_nodes.feature
hudson-0.3.0.beta.14 features/manage_slave_nodes.feature
hudson-0.3.0.beta.13 features/manage_slave_nodes.feature
hudson-0.3.0.beta.12 features/manage_slave_nodes.feature