Sha256: 7c8c29a96d6b05e7601042edeabd384bcfc21e7e6d75372fec677f153c071f80

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

Feature: This describes the core functionality of the SoapObject object

  Scenario: Establishing communications with remote wsdl
    Given I have the url for a remote wsdl
    When I create an instance of the SoapObject class
    Then I should have a connection

  Scenario: Establishing communications with a local wsdl
    Given I have a wsdl file residing locally
    When I create an instance of the SoapObject class
    Then I should have a connection

  Scenario: Providing operations when using wsdl
    Given I have the url for a remote wsdl
    When I create an instance of the SoapObject class
    Then I should be able to determine the operations

  Scenario Outline: Calling a service with a remote wsdl
    When I use a SoapObject with a remote wsdl named "<soap-object>"
    Then I should be able to successfully call "<operation>" with "<args>"
    Examples:
      | soap-object    | operation         | args   |
      | DefineService  | definition_for    | Cheese |
      | ZipCodeService | get_zip_code_info | 44114  |

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
soap-object-0.6.8 features/core_functionality.feature