Sha256: 8e546f35ab778a18753f178a245c851d8c882ca072ba632be35a1446e410c2e0
Contents?: true
Size: 1.19 KB
Versions: 2
Compression:
Stored size: 1.19 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 (hudson list) 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 (hudson list) 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 (hudson list) 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hudson-0.3.0.beta.13 | features/listing_jobs.feature |
hudson-0.3.0.beta.12 | features/listing_jobs.feature |