Sha256: 21ce68abde87f864af360f5e5bb5a262867f80ee84d7c739cd82b3db501fa493

Contents?: true

Size: 895 Bytes

Versions: 8

Compression:

Stored size: 895 Bytes

Contents

Feature: managing connections

  Scenario: creating a connection
    When I go to the connections page
    And I click the "New Connection" link
    And I fill in the form:
      | Name     | Fake data |
      | Type     | MySQL     |
      | Host     | localhost |
      | Port     | 12345     |
      | Username | coupler   |
      | Password | cupla     |
    And I click the "Submit" button
    Then it should show me a confirmation notice

  Scenario: editing a connection
    Given that I have created a connection called "My Connection"
    When I go to the connections page
    And I click the "Edit" link
    And I change "Name" to "Server X"
    And I click the "Submit" button
    Then it should take me back to the connections page

  Scenario: changing a connection that orphans resources

  Scenario: deleting a connection

  Scenario: deleting a connection that orphans resources

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
coupler-0.0.9-java features/connections.feature
coupler-0.0.8-java features/connections.feature
coupler-0.0.7-java features/connections.feature
coupler-0.0.6-java features/connections.feature
coupler-0.0.4-java features/connections.feature
coupler-0.0.3-java features/connections.feature
coupler-0.0.2-java features/connections.feature
coupler-0.0.1-java features/connections.feature