Sha256: b87abaf7a843a003fa1cff1d5a07154af149b1d1599ff472bc74b13c52bd281d

Contents?: true

Size: 1.4 KB

Versions: 1

Compression:

Stored size: 1.4 KB

Contents

@focus
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: Calling a service 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 make a call and receive the correct results

  Scenario: Getting the body from a response
    Given I have the url for a remote wsdl
    When I create an instance of the SoapObject class
    Then I should be able to make a call and receive the correct results
    And the results body should contain "<NewDataSet><Table>"

  Scenario: Getting the body from a response
    Given I have the url for a remote wsdl
    When I create an instance of the SoapObject class
    Then I should be able to make a call and receive the correct results
    And the results body xml should be a Nokogiri XML object

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
soap-object-0.4 features/basic_functionality.feature