Sha256: eabf0b174a629820b51c34ee06370954962d481d4f2fad9f4a8629435b514cab

Contents?: true

Size: 1.25 KB

Versions: 1

Compression:

Stored size: 1.25 KB

Contents

Feature: Utility Services
  Scenario: Get server information
    Given i'm connected to an OpenERP server
    And setup a proxy to "common"
    When i call common.about
    Then i should see "OpenERP"
    
  Scenario: Get server environment
    Given i'm connected to an OpenERP server
    And setup a proxy to "common"
    When i call common.get_server_environment
    Then i should see "OpenERP-Server Version : 6"
    And i should see "Python Version : 2.6"
    
  Scenario: Get server stats
    Given i'm connected to an OpenERP server
    And setup a proxy to "common"
    When i call common.get_stats
    Then i should see "HTTPd: running"
    
  Scenario: List available HTTP services
    Given i'm connected to an OpenERP server
    And setup a proxy to "common"
    When i call common.list_http_services
    Then the list should include "service.http_server.XMLRPCRequestHandler"
    
  Scenario: List available databases
    Given i'm connected to an OpenERP server
    And setup a proxy to "db"
    When i call db.list
    Then the list should include "kangaroo_test_database"
    
  Scenario: List available languages
    Given i'm connected to an OpenERP server
    And setup a proxy to "db"
    When i call db.list_lang
    Then the list should include "English"
    
  

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kangaroo-0.0.1.pre features/utility_services.feature