Sha256: 1e9f9eee836d9ee696fe8b728ca3a8048efb612330dccc5e1cf3b4a75c29fee5

Contents?: true

Size: 1.13 KB

Versions: 9

Compression:

Stored size: 1.13 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 (jenkins list)
    When I run local executable "jenkins" with arguments "list --host localhost --port 9999"
    Then I should see exactly
      """
      No connection available to the server.
      """
  
  Scenario: List jobs on a server with no jobs (jenkins list)
    Given I have a Jenkins server running
    And the Jenkins server has no current jobs
    When I run local executable "jenkins" with arguments "list --host localhost --port 3010"
    Then I should see exactly
      """
      http://localhost:3010: no jobs
      """
  
  Scenario: List jobs on a server with jobs (jenkins list)
    Given I have a Jenkins server running
    And the Jenkins server has no current jobs
    And I am in the "ruby" project folder
    And the project uses "git" scm
    When I run local executable "jenkins" with arguments "create . --host localhost --port 3010"
    When I run local executable "jenkins" with arguments "list"
    Then I should see exactly
      """
      http://localhost:3010:
      * ruby

      """
  
  

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
jenkins-0.6.8 features/listing_jobs.feature
jenkins-0.6.6 features/listing_jobs.feature
jenkins-0.6.5 features/listing_jobs.feature
akqa-jenkins-0.6.4.1 features/listing_jobs.feature
jenkins-0.6.4 features/listing_jobs.feature
jenkins-0.6.3 features/listing_jobs.feature
jenkins-0.6.2 features/listing_jobs.feature
jenkins-0.6.1 features/listing_jobs.feature
jenkins-0.6.0 features/listing_jobs.feature