Sha256: 4f3228ae0e6089a6917b409d66848d991710e42f860811303748c1b3ba7ff8ca

Contents?: true

Size: 879 Bytes

Versions: 10

Compression:

Stored size: 879 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: Add a slave with no authentication required
    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 --host localhost --port 3010"
    Then I should see exactly
      """
      master
      Slave 1
      """

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
hudson-0.3.0.beta.11 features/manage_slave_nodes.feature
hudson-0.3.0.beta.10 features/manage_slave_nodes.feature
hudson-0.3.0.beta.9 features/manage_slave_nodes.feature
hudson-0.3.0.beta.8 features/manage_slave_nodes.feature
hudson-0.3.0.beta.7 features/manage_slave_nodes.feature
hudson-0.3.0.beta.6 features/manage_slave_nodes.feature
hudson-0.3.0.beta.5 features/adding_slave_nodes.feature
hudson-0.3.0.beta.4 features/adding_slave_nodes.feature
hudson-0.3.0.beta.3 features/adding_slave_nodes.feature
hudson-0.3.0.beta.2 features/adding_slave_nodes.feature