Sha256: b180a0fd5607119b37cbfc0f73093ef9b643017c65d9024cd7eeb499cf47688f

Contents?: true

Size: 1.15 KB

Versions: 10

Compression:

Stored size: 1.15 KB

Contents

Feature: Listing jobs
  I want to see the status of jobs on servers I'm interested in

  Scenario: List jobs on a non-existent server
    When I run local executable "hudson" with arguments "list --host localhost --port 9999"
    Then I should see "localhost:9999 - no connection"
  
  Scenario: List jobs on a server with no jobs
    Given I have a Hudson server running
    And the Hudson server has no current jobs
    When I run local executable "hudson" with arguments "list --host localhost --port 3010"
    Then I should see "localhost:3010 - no jobs"
  
  Scenario: List jobs on a server with jobs
    Given I have a Hudson server running
    And the Hudson server has no current jobs
    And I am in the "ruby" project folder
    And the project uses "git" scm
    When I run local executable "hudson" with arguments "create . --host localhost --port 3010"
    When I run local executable "hudson" with arguments "list"
    Then I should see "localhost:3010 -"
    Then I should see "ruby"
    When I run local executable "hudson" with arguments "list --host localhost --port 3010"
    Then I should see "localhost:3010 -"
    Then I should see "ruby"
  
  
  
  

Version data entries

10 entries across 10 versions & 1 rubygems

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