Sha256: e1162630ba545729d7487412e080e59ef50dcbe7ca9281338aff21cfa830b0e8
Contents?: true
Size: 1.39 KB
Versions: 5
Compression:
Stored size: 1.39 KB
Contents
Feature: Configure host connection information Scenario: Configure host connection information and check default host and reconfigure Given I run local executable "jenkins" with arguments "configure --host localhost --port 3010" When I run local executable "jenkins" with arguments "default_host" Then I should see exactly """ http://localhost:3010 """ Given I run local executable "jenkins" with arguments "configure --host localhost --port 3010 --ssl" When I run local executable "jenkins" with arguments "default_host" Then I should see exactly """ https://localhost:3010 """ Scenario: Configure host connection authentication information and check auth_info and reconfigure Given I run local executable "jenkins" with arguments "auth_info" Then I should see exactly """ """ When I run local executable "jenkins" with arguments "configure --username jenkins --password sniknej" And I run local executable "jenkins" with arguments "auth_info" Then I should see exactly """ username: jenkins password: sniknej """ When I run local executable "jenkins" with arguments "configure --username jenkins1 --password 1sniknej" And I run local executable "jenkins" with arguments "auth_info" Then I should see exactly """ username: jenkins1 password: 1sniknej """
Version data entries
5 entries across 5 versions & 3 rubygems